From: Jay Freeman (saurik) Date: Fri, 3 Feb 2017 09:39:32 +0000 (-0800) Subject: This check was obviously backwards (OMG I'm dumb). X-Git-Tag: v1.1.28%b14^0 X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/ed3caba999d35cd2d60025fa24ea2e6e7087b86b This check was obviously backwards (OMG I'm dumb). --- diff --git a/MobileCydia.mm b/MobileCydia.mm index addc9418..4f90372c 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -4865,7 +4865,7 @@ static _H Diversions_; auto database([Database sharedInstance]); // XXX: this check is less racy than you'd expect, but this entire concept is a little awkward - if ([database hasPackages]) + if (![database hasPackages]) return message; NSMutableArray *words([[[message componentsSeparatedByString:@" "] mutableCopy] autorelease]);