Fix refreshing to use normal bundleid

Signed-off-by: Spidy123222 <64176728+Spidy123222@users.noreply.github.com>
This commit is contained in:
Spidy123222
2022-11-17 18:16:21 -08:00
committed by GitHub
parent d0a196ec40
commit 17be52c7b6

View File

@@ -136,7 +136,7 @@ extension FetchProvisioningProfilesOperation
if app.isAltStoreApp if app.isAltStoreApp
{ {
// Use legacy bundle ID format for AltStore. // Use legacy bundle ID format for AltStore.
preferredBundleID = "com.\(team.identifier).\(app.bundleIdentifier)" preferredBundleID = teamsMatch ? installedApp.resignedBundleIdentifier : nil
} }
else else
{ {
@@ -181,7 +181,7 @@ extension FetchProvisioningProfilesOperation
if app.isAltStoreApp if app.isAltStoreApp
{ {
// Use legacy bundle ID format for AltStore (and its extensions). // Use legacy bundle ID format for AltStore (and its extensions).
updatedParentBundleID = "com.\(team.identifier).\(parentBundleID)" updatedParentBundleID = parentBundleID + "." + team.identifier // Append just team identifier to make it harder to track.
} }
else else
{ {