www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 014aee1485c9a069de80e27f7f61d7846d122e8b
parent 0b82266882af331c692f174c77ab9c6906512b29
Author: Dan Stillman <dstillman@zotero.org>
Date:   Tue, 26 Mar 2013 16:15:31 -0400

Fix nsIRequest test for non-client environments

Diffstat:
Mchrome/content/zotero/xpcom/utilities.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/xpcom/utilities.js b/chrome/content/zotero/xpcom/utilities.js @@ -1136,7 +1136,7 @@ Zotero.Utilities = { } if (typeof(arr) == 'object') { // Array/Hashes/Objects - let isRequest = ((Zotero.isFx && !Zotero.isBookmarklet) || Zotero.isStandalone) + var isRequest = Zotero.isFx && !Zotero.isBookmarklet && arr instanceof Components.interfaces.nsIRequest; //array for checking recursion