From 30aabc62537a9acb501b34a2d5d7cbd962f26fb4 Mon Sep 17 00:00:00 2001 From: Theodore Date: Tue, 18 Nov 2025 14:56:01 +0100 Subject: [PATCH] Stripe: Update Revolut Pay presentment currency list (#5631) --- 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 325884a9f8..2e447a5d3e 100644 --- a/src/pretix/plugins/stripe/payment.py +++ b/src/pretix/plugins/stripe/payment.py @@ -423,7 +423,7 @@ class StripeSettingsHolder(BasePaymentProvider): ('method_revolut_pay', forms.BooleanField( label='Revolut Pay', - disabled=self.event.currency not in ['EUR', 'GBP'], + disabled=self.event.currency not in ['EUR', 'GBP', 'RON', 'HUF', 'PLN', 'DKK'], help_text=_('Some payment methods might need to be enabled in the settings of your Stripe account ' 'before they work properly.'), required=False,