From 24821b84e904b34d620a3bc3dc3ae2978c99d8ad Mon Sep 17 00:00:00 2001 From: glax Date: Sat, 13 Jan 2024 21:46:38 +0100 Subject: [PATCH] prefix ending --- OpenCS2hock/GSIServer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();