Skip to content
This repository was archived by the owner on Feb 19, 2020. It is now read-only.

Commit d7fdc74

Browse files
committed
Fix gloss still being added to app icons in iOS 7 *doh*
1 parent d7f0a0a commit d7fdc74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Classes/BITUpdateViewController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ - (void)viewDidLoad {
338338
addGloss = ![prerendered boolValue];
339339
}
340340

341-
if (addGloss && ![self.updateManager isPreiOS7Environment]) {
341+
if (addGloss && [self.updateManager isPreiOS7Environment]) {
342342
_appStoreHeader.iconImage = [self addGlossToImage:[UIImage imageNamed:iconString]];
343343
} else {
344344
_appStoreHeader.iconImage = [UIImage imageNamed:iconString];

0 commit comments

Comments
 (0)