[MicroPaymentQueue]: Review request denied.
ginoraviola opened this issue · 1 comments
ginoraviola commented
Hello, I have noticed that whenever I am triggering the InAppReview flow, the device console is logging:
Process: itunesstored - Message: [MicroPaymentQueue]: Review request denied.
However, that seems like is not actually failing, since I am using a try-catch, and the catch clause is not executed either.
try {
if (!InAppReview.isAvailable()) {
throw new Error('InAppReview is not available');
}
const result = await InAppReview.RequestInAppReview();
if (!result) {
throw new Error('InAppReview request failed');
}
} catch (error) {
// Do something else.
ginoraviola commented
Realised this is expected.