Update paypal payment method endpoint and enable subs in staging.

This commit is contained in:
Alex Hart
2022-12-21 15:46:43 -04:00
parent 396742f3ad
commit 9e2a5002bc
3 changed files with 3 additions and 6 deletions

View File

@@ -132,7 +132,7 @@ class DonationCheckoutDelegate(
}
.show()
} else {
Log.w(TAG, "Stripe action failed: ${result.action}")
Log.w(TAG, "Processor action failed: ${result.action}")
}
}

View File

@@ -582,7 +582,7 @@ public final class FeatureFlags {
* Whether or not we should allow PayPal payments for recurring donations
*/
public static boolean paypalRecurringDonations() {
return getBoolean(PAYPAL_RECURRING_DONATIONS, false);
return getBoolean(PAYPAL_RECURRING_DONATIONS, Environment.IS_STAGING);
}
/** Only for rendering debug info. */