Fix german locales not working because bsg map DE to GE for some reason

This commit is contained in:
Dev 2024-03-10 12:37:47 +00:00
parent 4ce4663fbe
commit 68d0007545

View File

@ -149,6 +149,12 @@ export class LocaleService
return "cz"; return "cz";
} }
// BSG map De to GE some reason
if (platformLocale.language === "de")
{
return "ge";
}
return langaugeCode; return langaugeCode;
} }
} }