diff options
| author | crobibero <cody@robibe.ro> | 2020-05-24 12:33:16 -0600 |
|---|---|---|
| committer | crobibero <cody@robibe.ro> | 2020-05-24 12:33:16 -0600 |
| commit | 62ea9b28214eda17bf61116068113a967b560463 (patch) | |
| tree | d8fef592852f93da3a16f630bb1683f273d0243f /Emby.Server.Implementations/Browser/BrowserLauncher.cs | |
| parent | 1f9cda6a6600a81969cf8afad3c60fa77bb5a093 (diff) | |
| parent | ebc24470e34a7ba12b64ca30d4c6e67d21dbad91 (diff) | |
Merge upstream/api-migration
Diffstat (limited to 'Emby.Server.Implementations/Browser/BrowserLauncher.cs')
| -rw-r--r-- | Emby.Server.Implementations/Browser/BrowserLauncher.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Browser/BrowserLauncher.cs b/Emby.Server.Implementations/Browser/BrowserLauncher.cs index 96096e142..e706401fd 100644 --- a/Emby.Server.Implementations/Browser/BrowserLauncher.cs +++ b/Emby.Server.Implementations/Browser/BrowserLauncher.cs @@ -1,5 +1,7 @@ using System; using MediaBrowser.Controller; +using MediaBrowser.Controller.Configuration; +using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Logging; namespace Emby.Server.Implementations.Browser @@ -24,7 +26,7 @@ namespace Emby.Server.Implementations.Browser /// <param name="appHost">The app host.</param> public static void OpenSwaggerPage(IServerApplicationHost appHost) { - TryOpenUrl(appHost, "/swagger/index.html"); + TryOpenUrl(appHost, "/api-docs/swagger"); } /// <summary> |
