diff options
author | Muxi Yan <muxi@users.noreply.github.com> | 2018-05-16 09:46:35 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-16 09:46:35 -0700 |
commit | 0f1fcd48f21e7d52edeac3e2087f32521cc9f11f (patch) | |
tree | 054b8fab295c0d2b78f1b131ae80d9e74b23dff0 | |
parent | b458070aaaad9a995433c2ce0b6b71362f9a2b29 (diff) |
Fix build error
-rw-r--r-- | src/objective-c/GRPCClient/private/GRPCHost.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/objective-c/GRPCClient/private/GRPCHost.m b/src/objective-c/GRPCClient/private/GRPCHost.m index cff046ed0d..14874c79bb 100644 --- a/src/objective-c/GRPCClient/private/GRPCHost.m +++ b/src/objective-c/GRPCClient/private/GRPCHost.m @@ -276,7 +276,7 @@ static NSMutableDictionary *kHostCache; // and Cellular data, so that a new call will use a new channel. Otherwise, a new call will still // use the cached channel which is no longer available and will cause gRPC to hang. - (void)connectivityChange:(NSNotification *)note { - [GRPCHost disconnect]; + [self disconnect]; } @end |