Skip to content

Commit 01a1428

Browse files
committed
Swap back inapp and subs in queryProductDetails()
1 parent 74cbe48 commit 01a1428

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/in_app_purchase/in_app_purchase_android/lib/src/in_app_purchase_android_platform.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,15 @@ class InAppPurchaseAndroidPlatform extends InAppPurchasePlatform {
8181
(BillingClient client) => client.queryProductDetails(
8282
productList: identifiers
8383
.map((String productId) => ProductWrapper(
84-
productId: productId, productType: ProductType.subs))
84+
productId: productId, productType: ProductType.inapp))
8585
.toList(),
8686
),
8787
),
8888
billingClientManager.runWithClient(
8989
(BillingClient client) => client.queryProductDetails(
9090
productList: identifiers
9191
.map((String productId) => ProductWrapper(
92-
productId: productId, productType: ProductType.inapp))
92+
productId: productId, productType: ProductType.subs))
9393
.toList(),
9494
),
9595
),

0 commit comments

Comments
 (0)