diff --git a/Limelight/Network/DiscoveryManager.m b/Limelight/Network/DiscoveryManager.m index b7f208e..1154c59 100644 --- a/Limelight/Network/DiscoveryManager.m +++ b/Limelight/Network/DiscoveryManager.m @@ -88,7 +88,7 @@ } - (BOOL) addHostToDiscovery:(Host *)host { - if (![self isHostInDiscovery:host]) { + if (host.uuid.length > 0 && ![self isHostInDiscovery:host]) { [_hostQueue addObject:host]; if (shouldDiscover) { [_opQueue addOperation:[self createWorkerForHost:host]];