File tree Expand file tree Collapse file tree 1 file changed +3
-19
lines changed
Expand file tree Collapse file tree 1 file changed +3
-19
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments