From eb403f34aa7c79d31e2ef331862c4d4b8cd25877 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Wed, 23 Feb 2011 00:00:56 -0800 Subject: Fix inverted logic on rpetrich's UpdateExternalStatus() code. --- MobileCydia.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; } -- cgit v1.2.3