mirror of
https://github.com/zotero/zotero.git
synced 2026-09-24 00:51:37 +00:00
Don't count main browser in browser count debug output in createHiddenBrowser()
This commit is contained in:
parent
3f17420405
commit
a806f09023
1 changed files with 1 additions and 1 deletions
|
|
@ -2361,7 +2361,7 @@ Zotero.Browser = new function() {
|
|||
hiddenBrowser.docShell.allowMetaRedirects = false;
|
||||
hiddenBrowser.docShell.allowPlugins = false;
|
||||
Zotero.debug("created hidden browser ("
|
||||
+ win.document.getElementsByTagName('browser').length + ")");
|
||||
+ (win.document.getElementsByTagName('browser').length - 1) + ")");
|
||||
return hiddenBrowser;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue