summaryrefslogtreecommitdiff
path: root/src/views/Operations/Kvm/KvmConsole.vue
diff options
context:
space:
mode:
authorAlexandr Ilenko <AIlenko@IBS.RU>2022-08-30 10:50:03 +0300
committerAlexandr Ilenko <AIlenko@IBS.RU>2022-08-30 10:50:03 +0300
commit53053c00715b33ba83b055cb7c0f6bec629d7689 (patch)
tree893ae3b39eec0679d41a0cb2136dafa8f0bcfab1 /src/views/Operations/Kvm/KvmConsole.vue
parent0444ab4658743504ddf12ddf911158aebf9037ae (diff)
parent788f3f3566bea46a164ed8ed68b39f69344fc65e (diff)
downloadwebui-vue-53053c00715b33ba83b055cb7c0f6bec629d7689.tar.xz
Merge branch 'fix-SILABMC-172' into sila
Diffstat (limited to 'src/views/Operations/Kvm/KvmConsole.vue')
-rw-r--r--src/views/Operations/Kvm/KvmConsole.vue8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/views/Operations/Kvm/KvmConsole.vue b/src/views/Operations/Kvm/KvmConsole.vue
index c028a9fc..c9425cfd 100644
--- a/src/views/Operations/Kvm/KvmConsole.vue
+++ b/src/views/Operations/Kvm/KvmConsole.vue
@@ -105,12 +105,10 @@ export default {
this.rfb = null;
},
openTerminal() {
+ const url = new URL('/kvm/0', window.location.href);
+ url.protocol = url.protocol.replace('http', 'ws');
const token = this.$store.getters['authentication/token'];
- this.rfb = new RFB(
- this.$refs.panel,
- `wss://${window.location.host}/kvm/0`,
- { wsProtocols: [token] }
- );
+ this.rfb = new RFB(this.$refs.panel, url, { wsProtocols: [token] });
this.rfb.scaleViewport = true;
this.rfb.clipViewport = true;