diff --git a/ArchiSteamFarm/IPC/Startup.cs b/ArchiSteamFarm/IPC/Startup.cs index 80ddac4d9..db1d7385f 100644 --- a/ArchiSteamFarm/IPC/Startup.cs +++ b/ArchiSteamFarm/IPC/Startup.cs @@ -46,7 +46,7 @@ namespace ArchiSteamFarm.IPC { // Add workaround for missing PathBase feature, https://github.com/aspnet/Hosting/issues/1120 PathString pathBase = Configuration.GetSection("Kestrel").GetValue("PathBase"); - if (!string.IsNullOrEmpty(pathBase)) { + if (!string.IsNullOrEmpty(pathBase) && (pathBase != "/")) { app.UsePathBase(pathBase); }