mirror of
https://github.com/lax1dude/crashreport-viewer.git
synced 2024-12-21 21:44:11 -08:00
ignore stack frames from eagswebrtc.js
This commit is contained in:
parent
e138dd039c
commit
54cb377112
|
@ -215,6 +215,8 @@ function updateSource(srcMap) {
|
|||
var hasShownWarning = false;
|
||||
for(var i = 0; i < lines.length; ++i) {
|
||||
var l = lines[i];
|
||||
|
||||
if(l.indexOf("eagswebrtc") === -1) {
|
||||
var split = l.split(":");
|
||||
|
||||
if(split.length > 1) {
|
||||
|
@ -260,6 +262,7 @@ function updateSource(srcMap) {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
appElements.outputContent.appendChild(document.createTextNode(lines[i] + "\n"));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user