Skip to content

Commit

Permalink
Merge pull request #19 from omarzl/task/unversal-bundle-ids
Browse files Browse the repository at this point in the history
removes a validation to consider universal bundle ids
  • Loading branch information
tinder-maxwellelliott committed May 24, 2024
2 parents 24ffc37 + a51f2cd commit 2036d19
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Sources/SignHereLibrary/Services/iTunesConnectService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -268,8 +268,7 @@ internal class iTunesConnectServiceImp: iTunesConnectService {
do {
let listBundleIDsResponse: ListBundleIDsResponse = try createITCApiJSONDecoder().decode(ListBundleIDsResponse.self, from: data)
guard let bundleIdITCId: String = listBundleIDsResponse.data.compactMap({ bundleData in
guard bundleData.attributes.identifier == bundleIdentifier,
bundleData.attributes.platform == platform
guard bundleData.attributes.identifier == bundleIdentifier
else {
return nil
}
Expand Down

0 comments on commit 2036d19

Please sign in to comment.