diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-02-23 00:00:56 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-02-23 00:00:56 -0800 |
commit | eb403f34aa7c79d31e2ef331862c4d4b8cd25877 (patch) | |
tree | 5296b04cac6689349b5941254210c58bb45b3f5a /MobileCydia.mm | |
parent | 5329a27a5f99cf0ca00bfa85b28eaab9e6de8fc4 (diff) |
Fix inverted logic on rpetrich's UpdateExternalStatus() code.
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r-- | MobileCydia.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index a16e8ab..9cc6f40 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -5010,7 +5010,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { system("su -c /usr/bin/uicache mobile"); _trace(); - UpdateExternalStatus(Finish_ == 0 ? 2 : 0); + UpdateExternalStatus(Finish_ == 0 ? 0 : 2); [delegate_ releaseNetworkActivityIndicator]; } |