Fix mDNS overriding manually specified addresses

This commit is contained in:
Cameron Gutman
2017-09-02 19:47:47 -07:00
parent 3464539bd3
commit 832b9189f8
2 changed files with 22 additions and 3 deletions
+2 -2
View File
@@ -49,8 +49,8 @@ static NSString* NV_SERVICE_TYPE = @"_nvstream._tcp";
for (NSNetService* service in services) {
if (service.hostName != nil) {
TemporaryHost* host = [[TemporaryHost alloc] init];
host.activeAddress = host.address = service.hostName;
host.name = host.address;
host.activeAddress = host.localAddress = service.hostName;
host.name = service.hostName;
[hosts addObject:host];
}
}