feat: update CheapLoc to 1.1.2

This commit is contained in:
goat 2020-04-12 16:26:22 +02:00
parent 4a685e42da
commit 43cb0870ee
2 changed files with 3 additions and 3 deletions

View file

@ -28,13 +28,13 @@ namespace Dalamud
if (ApplicableLangCodes.Any(x => currentUiLang.TwoLetterISOLanguageName == x)) {
SetupWithLangCode(currentUiLang.TwoLetterISOLanguageName);
} else {
Loc.Setup("{}");
Loc.SetupWithFallbacks();
}
}
catch (Exception ex)
{
Log.Error(ex, "Could not get language information. Setting up fallbacks.");
Loc.Setup("{}");
Loc.SetupWithFallbacks();
}
}