mirror of
https://github.com/lax1dude/crashreport-viewer.git
synced 2024-11-09 11:16:05 -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;
|
var hasShownWarning = false;
|
||||||
for(var i = 0; i < lines.length; ++i) {
|
for(var i = 0; i < lines.length; ++i) {
|
||||||
var l = lines[i];
|
var l = lines[i];
|
||||||
|
|
||||||
|
if(l.indexOf("eagswebrtc") === -1) {
|
||||||
var split = l.split(":");
|
var split = l.split(":");
|
||||||
|
|
||||||
if(split.length > 1) {
|
if(split.length > 1) {
|
||||||
|
@ -260,6 +262,7 @@ function updateSource(srcMap) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
appElements.outputContent.appendChild(document.createTextNode(lines[i] + "\n"));
|
appElements.outputContent.appendChild(document.createTextNode(lines[i] + "\n"));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user