Skip to content

Commit cfc3e81

Browse files
committed
Fixes typo #6
1 parent 67ab2ab commit cfc3e81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assets/pages/Container.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export default {
6060
ws = null;
6161
this.messages = [];
6262
}
63-
const protocol = SSL_ENABLED ? "wws" : "ws";
63+
const protocol = SSL_ENABLED ? "wss" : "ws";
6464
ws = new WebSocket(`${protocol}://${window.location.host}${BASE_PATH}/api/logs?id=${this.id}`);
6565
ws.onopen = e => console.log("Connection opened.");
6666
ws.onclose = e => console.log("Connection closed.");

0 commit comments

Comments
 (0)