summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2014-10-28 23:30:51 -0700
committerJay Freeman (saurik) <saurik@saurik.com>2014-10-28 23:30:51 -0700
commit02069dafaa648072612dcd8afbc4e79f8096d435 (patch)
tree4627a8c6236ea16138fe8668feff85dd99edd8aa
parent40bb55137f4b6d241bc69d1a6a509a32ca086ffe (diff)
Safe cancel of bad confirm should continue queue.
-rw-r--r--MobileCydia.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm
index 5684acd..556f7fe 100644
--- a/MobileCydia.mm
+++ b/MobileCydia.mm
@@ -5114,7 +5114,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) {
if ([context isEqualToString:@"remove"]) {
if (button == [alert cancelButtonIndex])
- [self dismissModalViewControllerAnimated:YES];
+ [self _doContinue];
else if (button == [alert firstOtherButtonIndex]) {
[self performSelector:@selector(complete) withObject:nil afterDelay:0];
}