Console: BugFix - On iOS 8, the app does not prompt user to upload logs after app crash. Rage shake is not working too.

This commit is contained in:
giomfo 2015-03-10 14:15:02 +01:00
parent f1c7c14a79
commit fe2714709d

View file

@ -154,11 +154,6 @@
// clear the notifications counter
[self clearNotifications];
// check if the app crashed last time
if ([MXLogger crashLog]) {
[RageShakableUIResponder reportCrash:self.masterTabBarController.selectedViewController];
}
return YES;
}
@ -211,6 +206,11 @@
[[ContactManager sharedManager] fullRefresh];
_isAppForeground = YES;
// check if the app crashed last time
if ([MXLogger crashLog]) {
[RageShakableUIResponder reportCrash:self.masterTabBarController.selectedViewController];
}
}
- (void)applicationWillTerminate:(UIApplication *)application {