mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-19 03:33:36 +01:00
Fix refreshing to use normal bundleid
Signed-off-by: Spidy123222 <64176728+Spidy123222@users.noreply.github.com>
This commit is contained in:
@@ -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
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user