From 62c7b4db2bd2a9ab99592aa4436a563b880657bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adomas=20Ven=C4=8Dkauskas?= Date: Mon, 6 Jun 2022 12:50:21 +0300 Subject: [PATCH] Log full hidden browser count after its creation --- chrome/content/zotero/xpcom/zotero.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/zotero.js b/chrome/content/zotero/xpcom/zotero.js index da4f71f7f0..1ed6ed54f8 100644 --- a/chrome/content/zotero/xpcom/zotero.js +++ b/chrome/content/zotero/xpcom/zotero.js @@ -2098,7 +2098,7 @@ Zotero.Browser = new function() { hiddenBrowser.docShell.allowJavascript = options.allowJavaScript !== false hiddenBrowser.docShell.allowMetaRedirects = false; hiddenBrowser.docShell.allowPlugins = false; - Zotero.debug("Created hidden browser (" + (nBrowsers++) + ")"); + Zotero.debug("Created hidden browser (" + (++nBrowsers) + ")"); return hiddenBrowser; }