From: Jay Freeman (saurik) Date: Wed, 15 Jan 2014 12:29:32 +0000 (-0800) Subject: Do not delete notification settings (parrotgeek1). X-Git-Tag: v0.9.4000~4 X-Git-Url: https://git.saurik.com/safemode-ios.git/commitdiff_plain/c5182285772ffdfabf5731528da3ffbf1dfd2290 Do not delete notification settings (parrotgeek1). --- diff --git a/Tweak.xm b/Tweak.xm index e91b4b6..9b4a133 100644 --- a/Tweak.xm +++ b/Tweak.xm @@ -308,6 +308,16 @@ static void AlertIfNeeded() { } %end +// we don't want this state persisted back to disk, however: that is just really really irritating + +%hook BBServer +- (void) _writeBehaviorOverrides {} +- (void) _writeSectionOrder {} +- (void) _writeClearedSections {} +- (void) _writeSectionInfo {} +%end + + // on iOS 6.0, Apple split parts of SpringBoard into a daemon called backboardd, including app launches // in order to allow safe mode to propogate into applications, we need to then tell backboardd here // XXX: (all of this should be replaced, however, with per-process launchd-mediated exception handling)