Skip to content

Commit 2036d19

Browse files
Merge pull request #19 from omarzl/task/unversal-bundle-ids
removes a validation to consider universal bundle ids
2 parents 24ffc37 + a51f2cd commit 2036d19

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Sources/SignHereLibrary/Services/iTunesConnectService.swift

+1-2
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,7 @@ internal class iTunesConnectServiceImp: iTunesConnectService {
268268
do {
269269
let listBundleIDsResponse: ListBundleIDsResponse = try createITCApiJSONDecoder().decode(ListBundleIDsResponse.self, from: data)
270270
guard let bundleIdITCId: String = listBundleIDsResponse.data.compactMap({ bundleData in
271-
guard bundleData.attributes.identifier == bundleIdentifier,
272-
bundleData.attributes.platform == platform
271+
guard bundleData.attributes.identifier == bundleIdentifier
273272
else {
274273
return nil
275274
}

0 commit comments

Comments
 (0)