mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-03 15:26:34 +01:00
Fix option to disable server discovery
This commit is contained in:
@@ -628,7 +628,6 @@ namespace Jellyfin.Networking.Manager
|
||||
}
|
||||
|
||||
TrustAllIP6Interfaces = config.TrustAllIP6Interfaces;
|
||||
// UdpHelper.EnableMultiSocketBinding = config.EnableMultiSocketBinding;
|
||||
|
||||
if (string.IsNullOrEmpty(MockNetworkSettings))
|
||||
{
|
||||
@@ -750,7 +749,7 @@ namespace Jellyfin.Networking.Manager
|
||||
bool partial = token[^1] == '*';
|
||||
if (partial)
|
||||
{
|
||||
token = token[0..^1];
|
||||
token = token[..^1];
|
||||
}
|
||||
|
||||
foreach ((string interfc, int interfcIndex) in _interfaceNames)
|
||||
|
||||
Reference in New Issue
Block a user