fix ws url

This commit is contained in:
CWX
2025-01-16 20:21:17 +00:00
parent 0bd70f5f6c
commit 408e522fa5
+1 -1
View File
@@ -55,7 +55,7 @@ public class HttpServerHelper
/** Get websocket url + port */
public string GetWebsocketUrl()
{
return $"ws://${BuildUrl()}";
return $"ws://{BuildUrl()}";
}
public void SendTextJson(HttpResponse resp, object output)