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 13 years ago
parent e818fcc3bd
commit 382451937b

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

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

Loading…
Cancel
Save