Fixed getLocalesGlobal() not correctly falling back to english when locale not found

This commit is contained in:
Dev 2024-05-24 23:23:59 +01:00
parent 612b1b7940
commit e2dd677b40

View File

@ -177,7 +177,7 @@ export class DataCallbacks
if (result === undefined)
{
result = tables.locales.global[localeId];
result = tables.locales.global["en"];
}
return this.httpResponse.getUnclearedBody(result);