From 786f06800f01d94fdf2d70081bcbdd6b33266b7d Mon Sep 17 00:00:00 2001 From: mahee96 <47920326+mahee96@users.noreply.github.com> Date: Sun, 22 Feb 2026 05:30:39 +0530 Subject: [PATCH] bug-fix: main-profile processing should account for the effective AppID which is in context.bundleIdentifier --- AltStore/Managing Apps/AppManager.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AltStore/Managing Apps/AppManager.swift b/AltStore/Managing Apps/AppManager.swift index 0ebf5542..4e4310c1 100644 --- a/AltStore/Managing Apps/AppManager.swift +++ b/AltStore/Managing Apps/AppManager.swift @@ -1533,7 +1533,7 @@ private extension AppManager return } - if let app = context.app, let profile = context.provisioningProfiles?[app.bundleIdentifier] { + if let app = context.app, let profile = context.provisioningProfiles?[context.bundleIdentifier] { var appexBundleIds: [String: String] = [:] for appex in app.appExtensions { appexBundleIds[appex.bundleIdentifier] = appex.bundleIdentifier.replacingOccurrences(of: app.bundleIdentifier, with: profile.bundleIdentifier)