diff --git a/OpenCS2hock/GSIServer.cs b/OpenCS2hock/GSIServer.cs index 1976921..2c9eb64 100644 --- a/OpenCS2hock/GSIServer.cs +++ b/OpenCS2hock/GSIServer.cs @@ -16,7 +16,7 @@ public class GSIServer public GSIServer(int port) { HttpListener = new HttpListener(); - HttpListener.Prefixes.Add($"http://127.0.0.1:{port}"); + HttpListener.Prefixes.Add($"http://127.0.0.1:{port}/"); HttpListener.Start(); Task connectionListener = HandleConnection();