diff options
author | Maxim Devaev <[email protected]> | 2024-12-26 05:05:03 +0200 |
---|---|---|
committer | Maxim Devaev <[email protected]> | 2024-12-26 05:05:03 +0200 |
commit | 287244d37682232cca23efed55dfe7e1ba74b5fd (patch) | |
tree | 1f6cf99b6ab0c69a4261640c1b42fb5f6811823a /web | |
parent | 56438a372e4341f60b856663e3b0629ec3e4ff88 (diff) |
kvmd: disabled legacy API by default
Diffstat (limited to 'web')
-rw-r--r-- | web/share/js/kvm/session.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/share/js/kvm/session.js b/web/share/js/kvm/session.js index c2f13342..c9839aca 100644 --- a/web/share/js/kvm/session.js +++ b/web/share/js/kvm/session.js @@ -293,7 +293,7 @@ export function Session() { tools.httpGet("/api/auth/check", null, function(http) { if (http.status === 200) { - __ws = new WebSocket(`${tools.is_https ? "wss" : "ws"}://${location.host}/api/ws?legacy=0`); + __ws = new WebSocket(`${tools.is_https ? "wss" : "ws"}://${location.host}/api/ws`); __ws.sendHidEvent = (event) => __sendHidEvent(__ws, event.event_type, event.event); __ws.onopen = __wsOpenHandler; __ws.onmessage = __wsMessageHandler; |