parent
38f389bce9
commit
4f942e1a13
|
@ -20,7 +20,7 @@ export const getLocale = async (req: GetTokenParams["req"]): Promise<string> =>
|
||||||
|
|
||||||
const tokenLocale = token?.["locale"];
|
const tokenLocale = token?.["locale"];
|
||||||
|
|
||||||
if (tokenLocale !== undefined) {
|
if (tokenLocale) {
|
||||||
return tokenLocale;
|
return tokenLocale;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -29,5 +29,5 @@ export const getLocale = async (req: GetTokenParams["req"]): Promise<string> =>
|
||||||
|
|
||||||
const languages = acceptLanguage ? parse(acceptLanguage) : [];
|
const languages = acceptLanguage ? parse(acceptLanguage) : [];
|
||||||
|
|
||||||
return languages[0]?.code ?? "en";
|
return languages[0]?.code || "en";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue