Fix url for LiveTV

This commit is contained in:
BaronGreenback
2021-04-24 23:54:48 +01:00
parent 224c48821e
commit 5741fa7dfa
4 changed files with 52 additions and 7 deletions

View File

@@ -990,6 +990,7 @@ namespace Jellyfin.Networking.Manager
// Read and parse bind addresses and exclusions, removing ones that don't exist.
_bindAddresses = CreateIPCollection(lanAddresses).ThatAreContainedInNetworks(_interfaceAddresses);
_bindExclusions = CreateIPCollection(lanAddresses, true).ThatAreContainedInNetworks(_interfaceAddresses);
_logger.LogInformation("Using bind addresses: {0}", _bindAddresses.AsString());
_logger.LogInformation("Using bind exclusions: {0}", _bindExclusions.AsString());
}