aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/Program.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-04-25 15:12:18 -0600
committercrobibero <cody@robibe.ro>2020-04-25 15:12:18 -0600
commit890e659cd390fc45c68b42c1a20f24a33e8c1570 (patch)
tree4f4a4d7a5aa5b209cc3686c0b672602f33eb7fa1 /Jellyfin.Server/Program.cs
parent041d674eb6e4a675b68406ed5c2d7018d61e870a (diff)
Fix autolaunch & redirect of swagger.
Diffstat (limited to 'Jellyfin.Server/Program.cs')
-rw-r--r--Jellyfin.Server/Program.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server/Program.cs b/Jellyfin.Server/Program.cs
index e55b0d4ed..23ddcf159 100644
--- a/Jellyfin.Server/Program.cs
+++ b/Jellyfin.Server/Program.cs
@@ -529,7 +529,7 @@ namespace Jellyfin.Server
var inMemoryDefaultConfig = ConfigurationOptions.DefaultConfiguration;
if (startupConfig != null && !startupConfig.HostWebClient())
{
- inMemoryDefaultConfig[HttpListenerHost.DefaultRedirectKey] = "swagger/index.html";
+ inMemoryDefaultConfig[HttpListenerHost.DefaultRedirectKey] = "api-docs/v1/swagger";
}
return config