summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2011-03-25 02:31:59 -0700
committerJay Freeman (saurik) <saurik@saurik.com>2011-03-25 02:31:59 -0700
commitcc3b7d31f2308a3aa5e93ab77fb5f842b0920860 (patch)
tree42d56bcbc06f8602cd19a82218c8ff806de447dc
parentdd58e110cb9c1a13dfddbde6e4604de107f4cfba (diff)
Fix incompetent code ordering.
-rw-r--r--MobileCydia.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm
index 6746085..1d2c1d6 100644
--- a/MobileCydia.mm
+++ b/MobileCydia.mm
@@ -8637,8 +8637,8 @@ static void HomeControllerReachabilityCallback(SCNetworkReachabilityRef reachabi
if (editingStyle == UITableViewCellEditingStyleDelete) {
Source *source = [self sourceAtIndexPath:indexPath];
[Sources_ removeObjectForKey:[source key]];
- [delegate_ reloadDataWithInvocation:nil];
[delegate_ _saveConfig];
+ [delegate_ reloadDataWithInvocation:nil];
}
}