Kestrel workaround

This commit is contained in:
BaronGreenback
2021-03-01 23:42:04 +00:00
parent dedc94ec91
commit 5942948714
2 changed files with 16 additions and 5 deletions

View File

@@ -280,7 +280,7 @@ namespace Jellyfin.Server
bool flagged = false;
foreach (IPObject netAdd in addresses)
{
_logger.LogInformation("Kestrel listening on {0}", netAdd);
_logger.LogInformation("Kestrel listening on {0}", netAdd.Address == IPAddress.IPv6Any ? "All Addresses" : netAdd);
options.Listen(netAdd.Address, appHost.HttpPort);
if (appHost.ListenWithHttps)
{