ignore stack frames from eagswebrtc.js

This commit is contained in:
LAX1DUDE 2022-10-17 02:36:20 -07:00
parent e138dd039c
commit 54cb377112

View File

@ -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"));
}