diff options
Diffstat (limited to 'common/content/options.js')
-rw-r--r-- | common/content/options.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/options.js b/common/content/options.js index dfccebed..c20882db 100644 --- a/common/content/options.js +++ b/common/content/options.js @@ -334,7 +334,7 @@ function Options() //{{{ switch (typeof value) { case "string": - if (type == service["pref"].PREF_INVALID || type == service["prefBranch"].PREF_STRING) + if (type == service["pref"].PREF_INVALID || type == service["pref"].PREF_STRING) service["pref"].setCharPref(name, value); else if (type == service["pref"].PREF_INT) liberator.echoerr("E521: Number required after =: " + name + "=" + value); |