diff options
author | Sam Bingner <sam@bingner.com> | 2020-04-09 15:45:27 -1000 |
---|---|---|
committer | Sam Bingner <sam@bingner.com> | 2020-04-09 15:45:27 -1000 |
commit | 35ef645dbc9d303315c0200686b5fa18dad9bfbe (patch) | |
tree | cc64511c4dd5d8f66a5cd502e175f2c95d8b9db9 | |
parent | 9e04441ed7bb18a7b8e91272e9cff0f5973adb3a (diff) |
Also exclude automatic substrate resprings from reloading datav1.1.32
-rw-r--r-- | MobileCydia.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 17f599b..9d66ac4 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -8653,7 +8653,7 @@ _end - (void) perform_ { [database_ perform]; - if (Finish_ == 0) { + if (Finish_ == 0 && !RestartSubstrate_) { [self performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:YES]; } else { // Reload data when we open up again |