diff --git a/src/Plugin.InAppBilling.Android/InAppBillingImplementation.cs b/src/Plugin.InAppBilling.Android/InAppBillingImplementation.cs index efe15e5..fa66110 100644 --- a/src/Plugin.InAppBilling.Android/InAppBillingImplementation.cs +++ b/src/Plugin.InAppBilling.Android/InAppBillingImplementation.cs @@ -506,16 +506,10 @@ public static void HandleActivityResult(int requestCode, Result resultCode, Inte return; } - if(resultCode == Result.Canceled && tcsPurchase != null && !tcsPurchase.Task.IsCompleted) - { - tcsPurchase.SetException(new InAppBillingPurchaseException(PurchaseError.UserCancelled)); - return; - } - - if(data == null) - { - return; - } + if (data == null) + { + return; + } int responseCode = data.GetIntExtra(RESPONSE_CODE, 0);