aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2022-03-08 22:11:06 +0100
committerBond_009 <bond.009@outlook.com>2022-03-08 22:11:06 +0100
commit16e0d46771b7e2f75394662de6d87cfc12613fbc (patch)
treebe1ee4157903e96ab798f01f8ddb0dd440027605 /Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs
parent03f1eff21abf75d88d15df05b6a841e48943c7ef (diff)
UdpServerEntryPoint: Fix typo
Diffstat (limited to 'Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs')
-rw-r--r--Emby.Server.Implementations/EntryPoints/UdpServerEntryPoint.cs2
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;
}