We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6d3f88 commit bd767a3Copy full SHA for bd767a3
Sources/bevy_ios_iap/BevyIosIAP.swift
@@ -214,6 +214,9 @@ public func convert_storekit_error(_ error: (StoreKitError)) -> IosIapStoreKitEr
214
case .systemError(let e): IosIapStoreKitError.system_error(e.localizedDescription)
215
case .notAvailableInStorefront: IosIapStoreKitError.not_available_in_storefront()
216
case .notEntitled: IosIapStoreKitError.not_entitled()
217
+
218
+ @unknown default:
219
+ IosIapStoreKitError.unknown()
220
}
221
222
0 commit comments