Use populate language code for country code method

This commit is contained in:
William Oldham 2024-01-06 12:31:22 +00:00
parent d8c96f2b6d
commit 86e81dcd05
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ export function sortLangCodes(langCodes: string[]) {
*/
export function getCountryCodeForLocale(locale: string): string | null {
let output: LanguageObj | null = null as any as LanguageObj;
const tag = getTag(locale, true);
const tag = getTag(populateLanguageCode(locale), true);
if (!tag?.language?.Subtag) return null;
// this function isn't async, so its guaranteed to work like this