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.'))