Browse Source

hotfix: load language before session is initialized (#778)

pull/777/head
Philip H 1 year ago
committed by GitHub
parent
commit
3ae9072686
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 7
      src/lib/Server.js
  2. 14
      src/www/js/api.js

7
src/lib/Server.js

@ -41,6 +41,10 @@ module.exports = class Server {
return RELEASE;
})))
.get('/api/lang', (Util.promisify(async () => {
return LANG;
})))
// Authentication
.get('/api/session', Util.promisify(async (req) => {
const requiresPassword = !!process.env.PASSWORD;
@ -162,9 +166,6 @@ module.exports = class Server {
const { address } = req.body;
return WireGuard.updateClientAddress({ clientId, address });
}))
.get('/api/lang', (Util.promisify(async () => {
return LANG;
})))
.listen(PORT, WEBUI_HOST, () => {
debug(`Listening on http://${WEBUI_HOST}:${PORT}`);

14
src/www/js/api.js

@ -36,6 +36,13 @@ class API {
});
}
async getLang() {
return this.call({
method: 'get',
path: '/lang',
});
}
async getSession() {
return this.call({
method: 'get',
@ -117,11 +124,4 @@ class API {
});
}
async getLang() {
return this.call({
method: 'get',
path: '/lang',
});
}
}

Loading…
Cancel
Save