www

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

commit cbc05baf0293ded03f128351c070064d26fbe6b9
parent 84c1367e7b93c629438c73f2c950b08390cfd76f
Author: Dan Stillman <dstillman@zotero.org>
Date:   Wed, 19 Jul 2017 05:30:44 -0400

Fix error on connector ping before site-specific Quick Copy load

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

diff --git a/chrome/content/zotero/xpcom/quickCopy.js b/chrome/content/zotero/xpcom/quickCopy.js @@ -91,7 +91,7 @@ Zotero.QuickCopy = new function() { this.hasSiteSettings = function () { - return _siteSettings.length > 0; + return _siteSettings && _siteSettings.length > 0; };