From ab0709558d506d2152d8d01ca3c78062babd0f0e Mon Sep 17 00:00:00 2001 From: Martin Gross Date: Tue, 17 Sep 2019 13:03:22 +0200 Subject: [PATCH] Fix #1389: PaymentIntents are 'processing' and not 'pending' --- src/pretix/plugins/stripe/payment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/plugins/stripe/payment.py b/src/pretix/plugins/stripe/payment.py index 1342e17f68..291e22f1eb 100644 --- a/src/pretix/plugins/stripe/payment.py +++ b/src/pretix/plugins/stripe/payment.py @@ -723,7 +723,7 @@ class StripeCC(StripeMethod): except SendMailException: raise PaymentException(_('There was an error sending the confirmation mail.')) - elif intent.status == 'pending': + elif intent.status == 'processing': if request: messages.warning(request, _('Your payment is pending completion. We will inform you as soon as the ' 'payment completed.'))