Fixed inverted locale logic that forced eng locale

This commit is contained in:
Chomp
2025-06-22 11:33:40 +01:00
parent 7dde75053d
commit d9e7c31b8a
@@ -91,7 +91,7 @@ public class LocaleService(
/// <returns> Locale e.g en/ge/cz/cn </returns>
public string GetDesiredServerLocale()
{
if (!string.IsNullOrEmpty(_chosenServerLocale))
if (string.IsNullOrEmpty(_chosenServerLocale))
{
_chosenServerLocale = string.Equals(
_localeConfig.ServerLocale,