Eric Chamberlain
Committed by Ben Copsey

Fixed Reachability changed notification name.

... ... @@ -3983,13 +3983,13 @@ static NSOperationQueue *sharedQueue = nil;
+ (void)registerForNetworkReachabilityNotifications
{
[[Reachability reachabilityForInternetConnection] startNotifier];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reachabilityChanged:) name:@"kNetworkReachabilityChangedNotification" object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reachabilityChanged:) name:kReachabilityChangedNotification object:nil];
}
+ (void)unsubscribeFromNetworkReachabilityNotifications
{
[[NSNotificationCenter defaultCenter] removeObserver:self name:@"kNetworkReachabilityChangedNotification" object:nil];
[[NSNotificationCenter defaultCenter] removeObserver:self name:kReachabilityChangedNotification object:nil];
}
+ (BOOL)isNetworkReachableViaWWAN
... ...