forked from CGM_Public/pretix_original
Fix #1389: PaymentIntents are 'processing' and not 'pending'
This commit is contained in:
@@ -723,7 +723,7 @@ class StripeCC(StripeMethod):
|
|||||||
|
|
||||||
except SendMailException:
|
except SendMailException:
|
||||||
raise PaymentException(_('There was an error sending the confirmation mail.'))
|
raise PaymentException(_('There was an error sending the confirmation mail.'))
|
||||||
elif intent.status == 'pending':
|
elif intent.status == 'processing':
|
||||||
if request:
|
if request:
|
||||||
messages.warning(request, _('Your payment is pending completion. We will inform you as soon as the '
|
messages.warning(request, _('Your payment is pending completion. We will inform you as soon as the '
|
||||||
'payment completed.'))
|
'payment completed.'))
|
||||||
|
|||||||
Reference in New Issue
Block a user