commit 33128d1f5924c1f3dac3c8dac1f8219d282c6372
parent c6e6cb639cb6f882a8017835aa76b4b294e321b5
Author: Dan Stillman <dstillman@zotero.org>
Date: Mon, 11 Sep 2017 03:51:28 -0400
Filter 'XPCOMUtils.jsm' lines from stack traces
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/chrome/content/zotero/xpcom/utilities_internal.js b/chrome/content/zotero/xpcom/utilities_internal.js
@@ -1130,6 +1130,7 @@ Zotero.Utilities.Internal = {
filterStack: function (stack) {
return stack.split(/\n/)
.filter(line => !line.includes('resource://zotero/bluebird'))
+ .filter(line => !line.includes('XPCOMUtils.jsm'))
.join('\n');
},