Browse Source

add check for input string emptiness in filterLang()

readme-update
Simon Grim 9 years ago
parent
commit
a26ff53c76
  1. 4
      js/mobile_abstract.js

4
js/mobile_abstract.js

@ -543,7 +543,9 @@ function filterLang(string) { @@ -543,7 +543,9 @@ function filterLang(string) {
var langFilterReason = '';
var langFilterList = $.Options.filterLangList.val;
if (langFilterList.length > 0) {
if (!string) {
langFilterReason = polyglot.t('this is undefined', {'this': 'string'});
} else if (langFilterList.length > 0) {
var langFilterAccuracy = $.Options.filterLangAccuracy.val;
langFilterPass = (langFilterMode === 'whitelist') ? false : true;
langFilterReason = polyglot.t('this doesnt contain that', {'this': polyglot.t(langFilterMode), 'that': polyglot.t('language of this')});

Loading…
Cancel
Save