diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-10 00:28:22 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-10 00:28:22 -0800 |
commit | 12d3d98ddb199e60891cfe6b07bcbc117c447134 (patch) | |
tree | 441a13727eefbfe19803ab484ed5cbea3a7b7855 | |
parent | 26fbf7a180b6732e75485506eb546f5d1502a0d1 (diff) |
We have to unload BEFORE we get the viewWillAppear callback.
-rw-r--r-- | MobileCydia.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index ae07323..6784428 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -4667,8 +4667,8 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { } - (void) _doContinue { - [self dismissModalViewControllerAnimated:YES]; [delegate_ cancelAndClear:NO]; + [self dismissModalViewControllerAnimated:YES]; } - (id) invokeDefaultMethodWithArguments:(NSArray *)args { |