commit 6993ca252c5792380e3de0aff8b262818b14214d
parent 73f4d28ab26de537efc8e7d1a3e38d2ecdc01e58
Author: Dan Stillman <dstillman@zotero.org>
Date: Fri, 30 Oct 2015 17:08:38 -0400
Fix download-on-sync mode for ZFS
Diffstat:
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
@@ -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;