fix: syntax error

at least this compiles
This commit is contained in:
naskya 2023-11-27 01:11:07 +09:00
parent 3af65beba0
commit dadb45f609
No known key found for this signature in database
GPG Key ID: 164DFF24E2D40139
2 changed files with 5 additions and 5 deletions

View File

@ -52,7 +52,7 @@ gulp.task("build:backend:script", () => {
"./packages/backend/src/server/web/bios.js",
"./packages/backend/src/server/web/cli.js",
])
.pipe(replace("LANGS", JSON.stringify(Object.keys(locales))))
.pipe(replace("SUPPORTED_LANGS", JSON.stringify(Object.keys(locales))))
.pipe(
terser({
toplevel: true,

View File

@ -25,12 +25,12 @@
//#region Detect language & fetch translations
const v = localStorage.getItem("v") || VERSION;
let supportedLangs = []
let supportedLangs = [];
try {
supportedLangs = LANGS;
supportedLangs = SUPPORTED_LANGS;
} catch {
console.log("LANGS not found");
};
console.warn("LANGS not found");
}
let lang = localStorage.getItem("lang");
if (lang == null || !supportedLangs.includes(lang)) {
if (supportedLangs.includes(navigator.language)) {