Skip to content

Commit b64930b

Browse files
Spidy123222junepark678
authored andcommitted
Attempt to fix signing sidestore
Signed-off-by: Spidy123222 <[email protected]>
1 parent 1000bea commit b64930b

File tree

1 file changed

+3
-19
lines changed

1 file changed

+3
-19
lines changed

AltServer/AltServerApp.cpp

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1308,27 +1308,11 @@ pplx::task<std::shared_ptr<ProvisioningProfile>> AltServerApp::PrepareProvisioni
13081308
std::string preferredName;
13091309
std::string parentBundleID;
13101310

1311-
if (parentApp.has_value())
1312-
{
1313-
parentBundleID = (*parentApp)->bundleIdentifier();
1314-
preferredName = (*parentApp)->name() + " " + app->name();
1315-
}
1316-
else
1317-
{
1318-
parentBundleID = app->bundleIdentifier();
1319-
preferredName = app->name();
1320-
}
1311+
parentBundleID = app->bundleIdentifier();
1312+
preferredName = app->name();
13211313

13221314
std::string updatedParentBundleID;
1323-
1324-
if (app->isAltStoreApp())
1325-
{
1326-
updatedParentBundleID = parentBundleID + "." + team->identifier();
1327-
}
1328-
else
1329-
{
1330-
updatedParentBundleID = parentBundleID + "." + team->identifier();
1331-
}
1315+
updatedParentBundleID = parentBundleID + "." + team->identifier();
13321316

13331317
std::string bundleID = std::regex_replace(app->bundleIdentifier(), std::regex(parentBundleID), updatedParentBundleID);
13341318

0 commit comments

Comments
 (0)