[all] fix bug 53786

This commit is contained in:
Maxim Kadushkin 2021-11-16 18:30:26 +03:00
parent 8da52eb9fc
commit 88397446a0

View file

@ -127,7 +127,7 @@ Common.Locale = new(function() {
l10n = json || {};
apply && _applyLocalization();
}).catch(function(e) {
if ( currentLang != defLang && defLang && defLang.length < 3 ) {
if ( !/loaded/.test(e) && currentLang != defLang && defLang && defLang.length < 3 ) {
return setTimeout(function(){
_requireLang(defLang)
}, 0);