hotfix: missing locale

Nit
This commit is contained in:
zomars
2023-10-10 15:46:28 -07:00
parent 38f389bce9
commit 4f942e1a13
+2 -2
View File
@@ -20,7 +20,7 @@ export const getLocale = async (req: GetTokenParams["req"]): Promise<string> =>
const tokenLocale = token?.["locale"];
if (tokenLocale !== undefined) {
if (tokenLocale) {
return tokenLocale;
}
@@ -29,5 +29,5 @@ export const getLocale = async (req: GetTokenParams["req"]): Promise<string> =>
const languages = acceptLanguage ? parse(acceptLanguage) : [];
return languages[0]?.code ?? "en";
return languages[0]?.code || "en";
};