From: Jay Freeman (saurik) Date: Thu, 30 Oct 2014 10:04:19 +0000 (-0700) Subject: Do not attempt to suspend Cydia on iOS before 8.0. X-Git-Tag: v1.1.14~6 X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/2acc4fa4d400257a3be72965d602d31edd54ebd4 Do not attempt to suspend Cydia on iOS before 8.0. --- diff --git a/MobileCydia.mm b/MobileCydia.mm index ac7f0b9a..5d84d6df 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -9723,6 +9723,8 @@ _end } - (void) applicationDidEnterBackground:(UIApplication *)application { + if (kCFCoreFoundationVersionNumber < 1000 && [self isSafeToSuspend]) + return [self terminateWithSuccess]; [self saveState]; }