2
0
Эх сурвалжийг харах

Merge pull request #4102 from cvium/fix_startup_lan_ip_validation

Skip startup message for /system/ping
Bond-009 4 жил өмнө
parent
commit
6aa6e33f7d

+ 3 - 1
Jellyfin.Server/Middleware/ServerStartupMessageMiddleware.cs

@@ -1,3 +1,4 @@
+using System;
 using System.Net.Mime;
 using System.Threading.Tasks;
 using MediaBrowser.Controller;
@@ -34,7 +35,8 @@ namespace Jellyfin.Server.Middleware
             IServerApplicationHost serverApplicationHost,
             ILocalizationManager localizationManager)
         {
-            if (serverApplicationHost.CoreStartupHasCompleted)
+            if (serverApplicationHost.CoreStartupHasCompleted
+                || httpContext.Request.Path.Equals("/system/ping", StringComparison.OrdinalIgnoreCase))
             {
                 await _next(httpContext).ConfigureAwait(false);
                 return;