diff --git a/AltServer/Devices/ALTDeviceManager+Installation.swift b/AltServer/Devices/ALTDeviceManager+Installation.swift index 411209b6..8ab57eed 100644 --- a/AltServer/Devices/ALTDeviceManager+Installation.swift +++ b/AltServer/Devices/ALTDeviceManager+Installation.swift @@ -387,7 +387,7 @@ To prevent this from happening, feel free to try again with another Apple ID to func updateFeatures(for appID: ALTAppID, app: ALTApplication, team: ALTTeam, completionHandler: @escaping (Result) -> Void) { let requiredFeatures = app.entitlements.compactMap { (entitlement, value) -> (ALTFeature, Any)? in - guard let feature = ALTFeature(entitlement) else { return nil } + guard let feature = ALTFeature(entitlement: entitlement) else { return nil } return (feature, value) } diff --git a/AltStore/Operations/ResignAppOperation.swift b/AltStore/Operations/ResignAppOperation.swift index 61e9c612..ec776819 100644 --- a/AltStore/Operations/ResignAppOperation.swift +++ b/AltStore/Operations/ResignAppOperation.swift @@ -252,7 +252,7 @@ private extension ResignAppOperation func updateFeatures(for appID: ALTAppID, app: ALTApplication, team: ALTTeam, completionHandler: @escaping (Result) -> Void) { let requiredFeatures = app.entitlements.compactMap { (entitlement, value) -> (ALTFeature, Any)? in - guard let feature = ALTFeature(entitlement) else { return nil } + guard let feature = ALTFeature(entitlement: entitlement) else { return nil } return (feature, value) } diff --git a/Dependencies/AltSign b/Dependencies/AltSign index 279f6e7b..44d0d6f0 160000 --- a/Dependencies/AltSign +++ b/Dependencies/AltSign @@ -1 +1 @@ -Subproject commit 279f6e7b0827e744724fa762427ec3d27ea84f92 +Subproject commit 44d0d6f0f23d144672d6d9bf6a8fe3b627157e62