mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	Fix autolaunch & redirect of swagger.
This commit is contained in:
		
							parent
							
								
									041d674eb6
								
							
						
					
					
						commit
						890e659cd3
					
				@ -1,5 +1,7 @@
 | 
				
			|||||||
using System;
 | 
					using System;
 | 
				
			||||||
using MediaBrowser.Controller;
 | 
					using MediaBrowser.Controller;
 | 
				
			||||||
 | 
					using MediaBrowser.Controller.Configuration;
 | 
				
			||||||
 | 
					using Microsoft.Extensions.Configuration;
 | 
				
			||||||
using Microsoft.Extensions.Logging;
 | 
					using Microsoft.Extensions.Logging;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
namespace Emby.Server.Implementations.Browser
 | 
					namespace Emby.Server.Implementations.Browser
 | 
				
			||||||
@ -24,7 +26,7 @@ namespace Emby.Server.Implementations.Browser
 | 
				
			|||||||
        /// <param name="appHost">The app host.</param>
 | 
					        /// <param name="appHost">The app host.</param>
 | 
				
			||||||
        public static void OpenSwaggerPage(IServerApplicationHost appHost)
 | 
					        public static void OpenSwaggerPage(IServerApplicationHost appHost)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            TryOpenUrl(appHost, "/swagger/index.html");
 | 
					            TryOpenUrl(appHost, "/api-docs/v1/swagger");
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        /// <summary>
 | 
					        /// <summary>
 | 
				
			||||||
 | 
				
			|||||||
@ -529,7 +529,7 @@ namespace Jellyfin.Server
 | 
				
			|||||||
            var inMemoryDefaultConfig = ConfigurationOptions.DefaultConfiguration;
 | 
					            var inMemoryDefaultConfig = ConfigurationOptions.DefaultConfiguration;
 | 
				
			||||||
            if (startupConfig != null && !startupConfig.HostWebClient())
 | 
					            if (startupConfig != null && !startupConfig.HostWebClient())
 | 
				
			||||||
            {
 | 
					            {
 | 
				
			||||||
                inMemoryDefaultConfig[HttpListenerHost.DefaultRedirectKey] = "swagger/index.html";
 | 
					                inMemoryDefaultConfig[HttpListenerHost.DefaultRedirectKey] = "api-docs/v1/swagger";
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            return config
 | 
					            return config
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user