Skip to content

Commit a6a997f

Browse files
authored
Update install link to use manifest.plist
1 parent 05efedb commit a6a997f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/installer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,10 +230,10 @@ let installer = (function () {
230230

231231
// When the flow is finished, returns the itms-services link string (or null if not finished).
232232
// The returned link uses the same install path as the original flow:
233-
// itms-services://?action=download-manifest&url=<encoded INSTALL_BASE>/<id>/install
233+
// itms-services://?action=download-manifest&url=<encoded INSTALL_BASE>/<id>/manifest.plist
234234
getInstallLink: function () {
235235
if (!_finished || !_installData || !_installData.id) return null;
236-
const manifestUrl = `${INSTALL_BASE}/${_installData.id}/install`;
236+
const manifestUrl = `${INSTALL_BASE}/${_installData.id}/manifest.plist`;
237237
return `itms-services://?action=download-manifest&url=${encodeURIComponent(manifestUrl)}`;
238238
},
239239

0 commit comments

Comments
 (0)