From 6993ca252c5792380e3de0aff8b262818b14214d Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Fri, 30 Oct 2015 17:08:38 -0400 Subject: [PATCH] Fix download-on-sync mode for ZFS --- chrome/content/zotero/xpcom/storage/storageLocal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/storage/storageLocal.js b/chrome/content/zotero/xpcom/storage/storageLocal.js index ea8a13c0ed..4c79912251 100644 --- a/chrome/content/zotero/xpcom/storage/storageLocal.js +++ b/chrome/content/zotero/xpcom/storage/storageLocal.js @@ -67,7 +67,7 @@ Zotero.Sync.Storage.Local = { */ downloadOnSync: function (libraryID, enable) { var pref = this._getDownloadPrefFromLibrary(libraryID); - var val = 'on-demand'; + var val = 'on-sync'; if (enable) { Zotero.Prefs.set(pref, val); return;