From 1103a7f0b4363849a173dfca2d2902d969dd7497 Mon Sep 17 00:00:00 2001 From: mahee96 <47920326+mahee96@users.noreply.github.com> Date: Sun, 22 Feb 2026 11:27:05 +0530 Subject: [PATCH] bug-fix: should be checking for iconName and not imageName anymore --- AltStore/Settings/AltAppIconsViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AltStore/Settings/AltAppIconsViewController.swift b/AltStore/Settings/AltAppIconsViewController.swift index af43ecaa..2ae07362 100644 --- a/AltStore/Settings/AltAppIconsViewController.swift +++ b/AltStore/Settings/AltAppIconsViewController.swift @@ -196,7 +196,7 @@ extension AltAppIconsViewController override func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) { let icon = self.dataSource.item(at: indexPath) - guard UIApplication.shared.alternateIconName != icon.imageName else { return } + guard UIApplication.shared.alternateIconName != icon.iconName else { return } // Deselect previous icon + select new icon collectionView.reloadData()