From 24fc9ac0a92dbce7d61bdee43293948f9ae51e64 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Fri, 16 Nov 2018 19:03:23 -0800 Subject: [PATCH] Change "host already added" message to be more clear --- Limelight/Network/DiscoveryManager.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Limelight/Network/DiscoveryManager.m b/Limelight/Network/DiscoveryManager.m index 5f275f1c..bc1cf416 100644 --- a/Limelight/Network/DiscoveryManager.m +++ b/Limelight/Network/DiscoveryManager.m @@ -59,7 +59,7 @@ host.online = YES; [serverInfoResponse populateHost:host]; if (![self addHostToDiscovery:host]) { - callback(nil, @"Host already added"); + callback(nil, @"Host information updated"); } else { callback(host, nil); }