From: Jay Freeman (saurik) Date: Tue, 5 May 2009 06:14:55 +0000 (+0000) Subject: Duh: &&= is not a valid operator. X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/e55154830092f12b08a8b721d15a1e4aa54d789e Duh: &&= is not a valid operator. --- diff --git a/Cydia.mm b/Cydia.mm index 5b3eb805..7ccdaf3b 100644 --- a/Cydia.mm +++ b/Cydia.mm @@ -2176,7 +2176,7 @@ struct PackageNameOrdering : _end essential_ = ((iterator_->Flags & pkgCache::Flag::Essential) == 0 ? NO : YES) || [self hasTag:@"cydia::essential"]; - visible_ &&= [self hasSupportingRole] && [self unfiltered]; + visible_ = visible_ && [self hasSupportingRole] && [self unfiltered]; } _end } return self; }