diff --git a/MeshCentralServer.cs b/MeshCentralServer.cs index 9f83e1e..60958a6 100644 --- a/MeshCentralServer.cs +++ b/MeshCentralServer.cs @@ -653,6 +653,7 @@ namespace MeshCentralRouter // Get login key string url = jsonAction["url"] + "&auth=" + authCookie; + if (url.StartsWith("*/")) { url = "wss://" + wsurl.Authority + url.Substring(1); } string loginkey = getValueFromQueryString(wsurl.Query, "key"); if (loginkey != null) { url += ("&key=" + loginkey); }