Slap me if I try to download non-purchsed apps :D

This commit is contained in:
Rahul Kumar Patel
2019-11-01 03:21:09 +05:30
parent 1bb74f0a60
commit b6c7e7d16c
2 changed files with 2 additions and 2 deletions

View File

@@ -81,7 +81,7 @@ public class DeliveryData extends BaseTask {
} else if (!app.isFree() && Accountant.isDummy(context)) {
throw new NotPurchasedException();
} else if (deliveryData == null) {
Log.d("No download link returned");
throw new NotPurchasedException();
}
}

View File

@@ -87,7 +87,7 @@ public class ObservableDeliveryData extends BaseTask {
} else if (!app.isFree() && Accountant.isDummy(context)) {
throw new NotPurchasedException();
} else if (deliveryData == null) {
Log.d("No download link returned");
throw new NotPurchasedException();
}
}