Forráskód Böngészése

Not to detect user lang when running in Node

Use DEFAULT_LANG with Node. Remove the logging on the server side:

[Lang] failed to detect user lang.
Jingguo Yao 1 éve
szülő
commit
3f5a189591
1 módosított fájl, 3 hozzáadás és 0 törlés
  1. 3 0
      app/locales/index.ts

+ 3 - 0
app/locales/index.ts

@@ -66,6 +66,9 @@ function setItem(key: string, value: string) {
 }
 
 function getLanguage() {
+  if (typeof process === "object") {
+    return DEFAULT_LANG;
+  }
   try {
     return navigator.language.toLowerCase();
   } catch {