diff --git a/common/content/options.js b/common/content/options.js index 9128b492..1e7b215e 100644 --- a/common/content/options.js +++ b/common/content/options.js @@ -986,7 +986,14 @@ function Options() //{{{ resetPref: function (name) { - return service["pref"].clearUserPref(name); + try + { + return service["pref"].clearUserPref(name); + } + catch (e) + { + // ignore - thrown if not a user set value + } }, // this works only for booleans