react-native-iap 12.4.5 → 12.4.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ios/RNIapIosSk2.swift +1 -1
- package/package.json +1 -1
package/ios/RNIapIosSk2.swift
CHANGED
|
@@ -568,7 +568,7 @@ class RNIapIosSk2iOS15: Sk2Delegate {
|
|
|
568
568
|
}
|
|
569
569
|
}
|
|
570
570
|
// Iterate through all of the user's purchased products.
|
|
571
|
-
for await result in Transaction.currentEntitlements {
|
|
571
|
+
for await result in onlyIncludeActiveItems ? Transaction.currentEntitlements : Transaction.all {
|
|
572
572
|
do {
|
|
573
573
|
// Check whether the transaction is verified. If it isn’t, catch `failedVerification` error.
|
|
574
574
|
let transaction = try checkVerified(result)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-iap",
|
|
3
|
-
"version": "12.4.
|
|
3
|
+
"version": "12.4.6",
|
|
4
4
|
"description": "React Native In App Purchase Module.",
|
|
5
5
|
"repository": "https://github.com/dooboolab/react-native-iap",
|
|
6
6
|
"author": "dooboolab <support@dooboolab.com> (https://github.com/dooboolab)",
|