diff --git a/chrome/content/zotero/xpcom/sync.js b/chrome/content/zotero/xpcom/sync.js index e64888bc6..5ad6cb4b2 100644 --- a/chrome/content/zotero/xpcom/sync.js +++ b/chrome/content/zotero/xpcom/sync.js @@ -1924,6 +1924,9 @@ Zotero.Sync.Server = new function () { sql = "INSERT INTO version VALUES ('syncdeletelog', ?)"; Zotero.DB.query(sql, Zotero.Date.getUnixTimestamp()); + var sql = "UPDATE syncedSettings SET synced=0"; + Zotero.DB.query(sql); + Zotero.DB.commitTransaction(); }