Improve language fallback detection

This commit is contained in:
tobspr 2020-06-11 10:23:02 +02:00
parent 3b3b1c4418
commit 3e3cfe2c67
1 changed files with 3 additions and 1 deletions

View File

@ -93,7 +93,9 @@ export function autoDetectLanguageId() {
return trans;
}
}
return null;
// Fallback
return "en";
}
function matchDataRecursive(dest, src) {