Don't tell the server if we notice locally that the subscription has expired. the server should check that itself

pull/14/head
Sam Bosley 12 years ago
parent e818fcc3bd
commit 382451937b

@ -97,7 +97,7 @@ public abstract class AstridPurchaseObserver extends PurchaseObserver {
}
}
}.start();
} else if (purchaseState == PurchaseState.REFUNDED || purchaseState == PurchaseState.EXPIRED) {
} else if (purchaseState == PurchaseState.REFUNDED) {
new Thread() {
@Override
public void run() {

@ -41,7 +41,7 @@ public final class Constants {
/**
* Whether to turn on debugging logging and UI
*/
public static final boolean DEBUG = true;
public static final boolean DEBUG = false;
/**
* Astrid Help URL

Loading…
Cancel
Save