diff --git a/common/content/options.js b/common/content/options.js index 36c6a26c..bca25522 100644 --- a/common/content/options.js +++ b/common/content/options.js @@ -926,7 +926,7 @@ const Options = Module("options", { context.completions = [ [prefs.get(filter), "Current Value"], [prefs.getDefault(filter), "Default Value"] - ].filter(function ([k]) k != null && k.length < 200); + ].filter(function (k) k[0] != null && String(k[0]).length < 200); return null; }