From 45d9127d26d58e93d8c286ac0e21f638c9b85812 Mon Sep 17 00:00:00 2001 From: Lars Kusch Date: Sat, 9 Oct 2021 17:40:14 +0200 Subject: [PATCH] Changed country code --- app/PaymentDrivers/StripePaymentDriver.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/PaymentDrivers/StripePaymentDriver.php b/app/PaymentDrivers/StripePaymentDriver.php index ad5056e03773..8e026d291d57 100644 --- a/app/PaymentDrivers/StripePaymentDriver.php +++ b/app/PaymentDrivers/StripePaymentDriver.php @@ -157,7 +157,7 @@ class StripePaymentDriver extends BaseDriver if ($this -> client && isset($this->client->country) - && in_array($this->client->country->iso_3166_3, ["DEU"])) // TODO: change to netherlands + && in_array($this->client->country->iso_3166_3, ["NLD"])) $types[] = GatewayType::IDEAL; return $types;