diff options
-rw-r--r-- | MobileCydia.mm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index 0bd8478..9dc0619 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -9050,9 +9050,6 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { [database_ yieldToSelector:@selector(reloadDataWithInvocation:) withObject:invocation]; - if (hud != nil) - [self removeProgressHUD:hud]; - size_t changes(0); [essential_ removeAllObjects]; @@ -9084,6 +9081,9 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { } [self _updateData]; + + if (hud != nil) + [self removeProgressHUD:hud]; } } - (void) updateData { |