Merge pull request #4675 from BaronGreenback/ProxyDNS

pull/4781/head
Claus Vium 4 years ago committed by GitHub
commit 8c00fbea9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -24,6 +24,7 @@ using Jellyfin.Server.Configuration;
using Jellyfin.Server.Filters;
using Jellyfin.Server.Formatters;
using MediaBrowser.Common.Json;
using MediaBrowser.Common.Net;
using MediaBrowser.Model.Entities;
using Microsoft.AspNetCore.Authentication;
using Microsoft.AspNetCore.Authorization;
@ -178,9 +179,9 @@ namespace Jellyfin.Server.Extensions
{
for (var i = 0; i < knownProxies.Count; i++)
{
if (IPAddress.TryParse(knownProxies[i], out var address))
if (IPHost.TryParse(knownProxies[i], out var host))
{
options.KnownProxies.Add(address);
options.KnownProxies.Add(host.Address);
}
}
}

Loading…
Cancel
Save