From 95eda7e07b1baa92a94b982b6c1dbe8f469c274e Mon Sep 17 00:00:00 2001 From: Moe Date: Sat, 31 Dec 2022 15:47:26 -0800 Subject: [PATCH] fix auto_host path builder --- web/assets/js/bs5.monitorSettings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/assets/js/bs5.monitorSettings.js b/web/assets/js/bs5.monitorSettings.js index 12f015e4..04f8b59c 100644 --- a/web/assets/js/bs5.monitorSettings.js +++ b/web/assets/js/bs5.monitorSettings.js @@ -900,7 +900,7 @@ var buildMonitorURL = function(){ host: host, protocol: protocol, port: port, - path: encodeURIComponent(path), + path: encodeURI(path), type: type, }); }