diff --git a/src/pretix/static/pretixpresale/js/ui/typocheck.js b/src/pretix/static/pretixpresale/js/ui/typocheck.js index 913e184cf8..4a3533be50 100644 --- a/src/pretix/static/pretixpresale/js/ui/typocheck.js +++ b/src/pretix/static/pretixpresale/js/ui/typocheck.js @@ -12,7 +12,7 @@ function typocheck() { $sources.each(function () { $.each($(this).val().toLowerCase().replace('-', '').split(' '), function (i, w) { - if (w) { + if (w && w.length > 5) { words.push(w); } });