diff options
| author | Cody Robibero <cody@robibe.ro> | 2022-03-08 14:37:01 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-08 14:37:01 -0700 |
| commit | dacbfc83ff83f09582ce2c2c69a1632f7a9f69b2 (patch) | |
| tree | 9670460da9e576faf2d8f1101e1464a124c0ef63 | |
| parent | 4f1efb39966d1a6ceed817226d23b10745964faf (diff) | |
| parent | 16e0d46771b7e2f75394662de6d87cfc12613fbc (diff) | |
Merge pull request #7431 from Bond-009/autodiscovery
| -rw-r--r-- | Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs b/Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs index 34fdfbe8d..e45baedd7 100644 --- a/Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs +++ b/Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs @@ -61,7 +61,7 @@ namespace Emby.Server.Implementations.EntryPoints { CheckDisposed(); - if (_configurationManager.GetNetworkConfiguration().AutoDiscovery) + if (!_configurationManager.GetNetworkConfiguration().AutoDiscovery) { return Task.CompletedTask; } |
