diff --git a/AltStore/Operations/FetchProvisioningProfilesOperation.swift b/AltStore/Operations/FetchProvisioningProfilesOperation.swift index 6e5c4f64..416b1edf 100644 --- a/AltStore/Operations/FetchProvisioningProfilesOperation.swift +++ b/AltStore/Operations/FetchProvisioningProfilesOperation.swift @@ -237,7 +237,7 @@ extension FetchProvisioningProfilesOperation { let appIDs = try Result(appIDs, error).get() - if let appID = appIDs.first(where: { $0.bundleIdentifier == bundleIdentifier }) + if let appID = appIDs.first(where: { $0.bundleIdentifier.lowercased() == bundleIdentifier.lowercased() }) { completionHandler(.success(appID)) }