commit 3c0e4a2ce458663814a293c1c6e773a1888cb32f
parent 6ea38df8735186290064059624d1236b7a453d85
Author: Dan Stillman <dstillman@zotero.org>
Date: Thu, 7 Mar 2013 15:23:15 -0500
Don't sync updated settings more than once
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/chrome/content/zotero/xpcom/sync.js b/chrome/content/zotero/xpcom/sync.js
@@ -1631,6 +1631,9 @@ Zotero.Sync.Server = new function () {
Zotero.Sync.Server.nextLocalSyncDate = false;
Zotero.Sync.Server.lastRemoteSyncTime = response.getAttribute('timestamp');
+ var sql = "UPDATE syncedSettings SET synced=1";
+ Zotero.DB.query(sql);
+
//throw('break2');
Zotero.DB.commitTransaction();