]> git.proxmox.com Git - mirror_novnc.git/commitdiff
Fix host and port via query string
authorPierre Ossman <ossman@cendio.se>
Mon, 19 Aug 2024 12:01:00 +0000 (14:01 +0200)
committerPierre Ossman <ossman@cendio.se>
Mon, 19 Aug 2024 12:01:00 +0000 (14:01 +0200)
We need to call initSetting() even if we don't have any interesting
default to set, as that is what checks if values have been provided as a
query string.

Fixes 96c76f7.

app/ui.js

index 90dc7189312a922289b1faa62e21bd646f6466b9..71933af636b521cb6f235cf42b938501c111dd7c 100644 (file)
--- a/app/ui.js
+++ b/app/ui.js
@@ -159,6 +159,8 @@ const UI = {
         UI.updateLogging();
 
         /* Populate the controls if defaults are provided in the URL */
+        UI.initSetting('host', '');
+        UI.initSetting('port', 0);
         UI.initSetting('encrypt', (window.location.protocol === "https:"));
         UI.initSetting('view_clip', false);
         UI.initSetting('resize', 'off');