MinaSamir11/react-native-in-app-review

[MicroPaymentQueue]: Review request denied.

ginoraviola opened this issue · 1 comments

Hello, I have noticed that whenever I am triggering the InAppReview flow, the device console is logging:

Process: itunesstored - Message: [MicroPaymentQueue]: Review request denied.

image

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.

Realised this is expected.