From 9ae0d9b0a11e21b4c702b46978ac63e706def100 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Mon, 26 Mar 2018 23:16:06 +0200 Subject: [PATCH] Fix bug with Stripe 3DS --- src/pretix/plugins/stripe/payment.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pretix/plugins/stripe/payment.py b/src/pretix/plugins/stripe/payment.py index f1ea69dbbd..fe31531b22 100644 --- a/src/pretix/plugins/stripe/payment.py +++ b/src/pretix/plugins/stripe/payment.py @@ -514,6 +514,7 @@ class StripeCC(StripeMethod): 'hash': hashlib.sha1(order.secret.lower().encode()).hexdigest(), }) }, + **self.api_kwargs ) if source.status == "pending": order.payment_info = str(source)