Restore settings to server

If the local data is to be resotres to the zotero server,
the settings like tag colors also need to be synced again.
This commit is contained in:
Klaus Flittner 2015-02-26 20:08:30 +01:00
parent 94b2865149
commit 1990240733

View File

@ -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();
}