Skip to content

Commit 5eb332f

Browse files
committed
fix altstore feed for multiple betas
1 parent e30a720 commit 5eb332f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/lib/buildParser.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,9 @@ iCube is a fork of DolphiniOS, optimized for iOS and tvOS devices.`,
207207
`${baseURL}/screenshots/iphone8-pause.jpg`,
208208
],
209209
versions: versions.map(v => ({
210-
version: v.version,
210+
// Make beta versions unique by appending beta number to version string
211+
// This prevents duplicate version errors when multiple betas share the same bundle version
212+
version: v.isBeta && v.betaNumber ? `${v.version}-beta${v.betaNumber}` : v.version,
211213
buildVersion: v.buildVersion,
212214
date: v.date,
213215
localizedDescription: v.localizedDescription,

0 commit comments

Comments
 (0)