Fixed inverted locale logic that forced eng locale
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user