From 26773e52406411762e08db30a2b5621c41d773ae Mon Sep 17 00:00:00 2001 From: giomfo Date: Wed, 13 Jul 2016 18:17:08 +0200 Subject: [PATCH] Bug Fix - Reported crash: App crashes during [AppDelegate applicationDidEnterBackground:] https://github.com/vector-im/vector-ios/issues/452 --- Vector/AppDelegate.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vector/AppDelegate.m b/Vector/AppDelegate.m index c48d64bd7..5f916ddf1 100644 --- a/Vector/AppDelegate.m +++ b/Vector/AppDelegate.m @@ -360,7 +360,7 @@ NSString *const kAppDelegateDidTapStatusBarNotification = @"kAppDelegateDidTapSt } [[AFNetworkReachabilityManager sharedManager] setReachabilityStatusChangeBlock:nil]; [[AFNetworkReachabilityManager sharedManager] stopMonitoring]; - self.isOffline = NO; + _isOffline = NO; // check if some media must be released to reduce the cache size [MXKMediaManager reduceCacheSizeToInsert:0];