mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
Merge pull request #4102 from cvium/fix_startup_lan_ip_validation
Skip startup message for /system/ping
This commit is contained in:
commit
6aa6e33f7d
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user