From: Jay Freeman (saurik) Date: Tue, 1 Mar 2011 02:09:28 +0000 (-0800) Subject: The HomeController is critical and must always be loaded. X-Git-Tag: v1.1.0%b1~109 X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/ed7bfd8c89b64f81b1363ba4bc10c45baee048ce?ds=inline The HomeController is critical and must always be loaded. --- diff --git a/MobileCydia.mm b/MobileCydia.mm index 8049d6c8..2f6d8a05 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -6554,6 +6554,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { - (id) init { if ((self = [super init]) != nil) { [self setURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@/#!/home/", UI_]]]; + [self reloadData]; } return self; } @@ -6589,6 +6590,11 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { ] autorelease]]; } +- (void) unloadData { + [super unloadData]; + [self reloadData]; +} + @end /* }}} */ /* Manage Controller {{{ */