We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was receiving following error in the logs.
⚡️ [error] - ERROR Error: Uncaught (in promise): TypeError: undefined is not an object (evaluating 'receipt.transactions[0].transactionId') @user-script:23:624:64 @user-script:23:9:75 ZoneAwarePromise@capacitor://localhost/polyfills.js:2724:31 @user-script:23:5:36 forEach@[native code] run@user-script:23:608:33 timer@capacitor://localhost/polyfills.js:4688:38 onInvokeTask@capacitor://localhost/vendor.js:151023:35 @capacitor://localhost/polyfills.js:1331:49 @capacitor://localhost/polyfills.js:1676:35
Then I checked why this could be happening and found some places where this "receipt.transactions[0].transactionId" statement is in place.
/** * Prepare for receipt validation */ receiptValidationBody(receipt) { var _a; return __awaiter(this, void 0, void 0, function* () { const transaction = receipt.transactions[0]; if (!transaction) return; const productId = (_a = transaction.products[0]) === null || _a === void 0 ? void 0 : _a.id; if (!productId) return; const product = this._products.getProduct(productId); if (!product) return; const purchase = transaction.nativePurchase; return { id: productId, type: product.type, offers: product.offers, products: this._products.products, transaction: { type: CdvPurchase.Platform.GOOGLE_PLAY, id: receipt.transactions[0].transactionId, purchaseToken: purchase.purchaseToken, signature: purchase.signature, receipt: purchase.receipt, } }; }); }
and also this section:
// for backward compatibility, we consider that the receipt is verified. callback({ receipt, payload: { ok: true, data: { id: receipt.transactions[0].transactionId, latest_receipt: true, transaction: { type: 'test' } // dummy data } } });
In both sections, there is no check whether the receipt.transactions array contains an element or not.
The text was updated successfully, but these errors were encountered:
edd684f
No branches or pull requests
I was receiving following error in the logs.
Then I checked why this could be happening and found some places where this "receipt.transactions[0].transactionId" statement is in place.
and also this section:
In both sections, there is no check whether the receipt.transactions array contains an element or not.
The text was updated successfully, but these errors were encountered: