Fix missing return in previous commit

This commit is contained in:
Dan Stillman 2023-07-20 06:42:08 -04:00
parent 590460cea4
commit 96e2510165

View file

@ -210,7 +210,7 @@ Zotero.Prefs = new function(){
this.prefHasUserValue = function (pref, global) {
pref = global ? pref : ZOTERO_CONFIG.PREF_BRANCH + pref;
this.rootBranch.prefHasUserValue(pref);
return this.rootBranch.prefHasUserValue(pref);
};