summaryrefslogtreecommitdiff
path: root/src/views/Operations/SerialOverLan/SerialOverLanConsole.vue
diff options
context:
space:
mode:
authorAlexandr Ilenko <AIlenko@IBS.RU>2022-08-22 18:33:14 +0300
committerAlexandr Ilenko <AIlenko@IBS.RU>2022-08-30 10:45:30 +0300
commitf47ddcfeaa957dd6571b35e6ba7b761892f186db (patch)
tree4e825212486e6ce5f09c889cea316f75136e2193 /src/views/Operations/SerialOverLan/SerialOverLanConsole.vue
parent0444ab4658743504ddf12ddf911158aebf9037ae (diff)
downloadwebui-vue-f47ddcfeaa957dd6571b35e6ba7b761892f186db.tar.xz
[SILABMC-280] Fix: use wsS only when httpS
Diffstat (limited to 'src/views/Operations/SerialOverLan/SerialOverLanConsole.vue')
-rw-r--r--src/views/Operations/SerialOverLan/SerialOverLanConsole.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/views/Operations/SerialOverLan/SerialOverLanConsole.vue b/src/views/Operations/SerialOverLan/SerialOverLanConsole.vue
index 694083fd..6b84ab85 100644
--- a/src/views/Operations/SerialOverLan/SerialOverLanConsole.vue
+++ b/src/views/Operations/SerialOverLan/SerialOverLanConsole.vue
@@ -91,9 +91,9 @@ export default {
openTerminal() {
const token = this.$store.getters['authentication/token'];
- this.ws = new WebSocket(`wss://${window.location.host}/console0`, [
- token,
- ]);
+ const url = new URL('/console0', window.location.href);
+ url.protocol = url.protocol.replace('http', 'ws');
+ this.ws = new WebSocket(url, [token]);
// Refer https://github.com/xtermjs/xterm.js/ for xterm implementation and addons.