summaryrefslogtreecommitdiff
path: root/ios
diff options
context:
space:
mode:
authorSiqi LIU <me@siqi.fr>2013-07-19 22:57:20 +0200
committerSiqi LIU <me@siqi.fr>2013-07-20 01:07:17 +0200
commitf63d44df0ae3820803a5016dad0fed6f3cef8a59 (patch)
tree833a78e444d5bea5e1efcdf38b21762117447364 /ios
parentac73ea2bdc6f26dd6ecc92d7f0e520e75ac09087 (diff)
minor bug fix
Change-Id: Ib2358feb09812a219966525d0992eb49a62dbdfc
Diffstat (limited to 'ios')
-rw-r--r--ios/iosremote/iosremote/serverList_vc.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/ios/iosremote/iosremote/serverList_vc.m b/ios/iosremote/iosremote/serverList_vc.m
index 28ebba7fe6f1..9d25bb813616 100644
--- a/ios/iosremote/iosremote/serverList_vc.m
+++ b/ios/iosremote/iosremote/serverList_vc.m
@@ -227,7 +227,7 @@
NSLog(@"Connecting to %@:%@", [[self.comManager.servers objectAtIndex:indexPath.row] serverName], [[self.comManager.servers objectAtIndex:indexPath.row] serverAddress]);
[self.comManager connectToServer:[self.comManager.servers objectAtIndex:indexPath.row]];
} else if (indexPath.section == 0){
- NSLog(@"Connecting to %@:%@", [[self.comManager.servers objectAtIndex:indexPath.row] serverName], [[self.comManager.autoDiscoveryServers objectAtIndex:indexPath.row] serverAddress]);
+ NSLog(@"Connecting to %@:%@", [[self.comManager.autoDiscoveryServers objectAtIndex:indexPath.row] serverName], [[self.comManager.autoDiscoveryServers objectAtIndex:indexPath.row] serverAddress]);
[self.comManager connectToServer:[self.comManager.autoDiscoveryServers objectAtIndex:indexPath.row]];
}