diff --git a/common/content/hints.js b/common/content/hints.js index f17f32f7..c59f9240 100644 --- a/common/content/hints.js +++ b/common/content/hints.js @@ -1267,7 +1267,7 @@ var Hints = Module("hints", { }, validator: function (value) { let values = events.fromString(value).map(events.closure.toString); - return Option.validIf(array.uniq(values).length === values.length, + return Option.validIf(array.uniq(values).length === values.length && values.length > 1, _("option.hintkeys.duplicate")); } });