www

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

commit 32ea7cfbb51f0875b6c1e72b9090bbeb89d9d26c
parent 897b3993b435cf56e9b21e4d385ca96e1e856d43
Author: Adomas VenĨkauskas <adomas.ven@gmail.com>
Date:   Fri, 14 Oct 2016 12:10:15 +0300

Fix tag selector errors due to unloaded feed synced settings

Diffstat:
Mchrome/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 @@ -651,8 +651,8 @@ Components.utils.import("resource://gre/modules/osfile.jsm"); yield Zotero.Promise.each( Zotero.Libraries.getAll(), library => Zotero.Promise.coroutine(function* () { + yield Zotero.SyncedSettings.loadAll(library.libraryID); if (library.libraryType != 'feed') { - yield Zotero.SyncedSettings.loadAll(library.libraryID); yield Zotero.Collections.loadAll(library.libraryID); yield Zotero.Searches.loadAll(library.libraryID); }