summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/client')
-rw-r--r--src/client/app/boot.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/app/boot.js b/src/client/app/boot.js
index c35620dc5a..f3b7304d19 100644
--- a/src/client/app/boot.js
+++ b/src/client/app/boot.js
@@ -43,6 +43,9 @@
if (`${url.pathname}/`.startsWith('/admin/')) app = 'admin';
//#endregion
+ // Script version
+ const ver = localStorage.getItem('v') || VERSION;
+
//#region Detect the user language
let lang = null;
@@ -67,7 +70,7 @@
let locale = localStorage.getItem('locale');
if (locale == null) {
- const locale = await fetch(`/assets/locales/${lang}.json`)
+ const locale = await fetch(`/assets/locales/${lang}.json?ver=${ver}`)
.then(response => response.json());
localStorage.setItem('locale', JSON.stringify(locale));
@@ -98,9 +101,6 @@
app = isMobile ? 'mobile' : 'desktop';
}
- // Script version
- const ver = localStorage.getItem('v') || VERSION;
-
// Get salt query
const salt = localStorage.getItem('salt')
? `?salt=${localStorage.getItem('salt')}`