www

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

commit e787bb11836ba020a82de569e2eaf19d43c4c6a4
parent 2a55e56f3fee41f2f3526f21a64eb6eb349ec052
Author: Dan Stillman <dstillman@zotero.org>
Date:   Thu, 30 Jun 2016 07:24:06 -0400

Fix save()/saveTx() warning when uploading settings

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

diff --git a/chrome/content/zotero/xpcom/sync/syncEngine.js b/chrome/content/zotero/xpcom/sync/syncEngine.js @@ -844,7 +844,7 @@ Zotero.Sync.Data.Engine.prototype._uploadSettings = Zotero.Promise.coroutine(fun libraryVersion ); this.library.libraryVersion = libraryVersion; - yield this.library.save(); + yield this.library.saveTx(); Zotero.debug("Done uploading settings in " + this.library.name); return libraryVersion;