mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-22 13:13:24 +01:00
bug-fix: main-profile processing should account for the effective AppID which is in context.bundleIdentifier
This commit is contained in:
@@ -1533,7 +1533,7 @@ private extension AppManager
|
|||||||
return
|
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] = [:]
|
var appexBundleIds: [String: String] = [:]
|
||||||
for appex in app.appExtensions {
|
for appex in app.appExtensions {
|
||||||
appexBundleIds[appex.bundleIdentifier] = appex.bundleIdentifier.replacingOccurrences(of: app.bundleIdentifier, with: profile.bundleIdentifier)
|
appexBundleIds[appex.bundleIdentifier] = appex.bundleIdentifier.replacingOccurrences(of: app.bundleIdentifier, with: profile.bundleIdentifier)
|
||||||
|
|||||||
Reference in New Issue
Block a user