From 5cfabb4c0af7c4e3b81e0ada46f3e9869a2ebc1d Mon Sep 17 00:00:00 2001 From: Michiel Gerritsen Date: Wed, 7 Aug 2024 13:43:06 +0200 Subject: [PATCH] Bugfix: Redirect customer to success page when the Mollie order is 'shipping' --- Service/Mollie/GetMollieStatusResult.php | 1 + 1 file changed, 1 insertion(+) diff --git a/Service/Mollie/GetMollieStatusResult.php b/Service/Mollie/GetMollieStatusResult.php index 6daabc13a0d..cd421db4c62 100644 --- a/Service/Mollie/GetMollieStatusResult.php +++ b/Service/Mollie/GetMollieStatusResult.php @@ -50,6 +50,7 @@ public function shouldRedirectToSuccessPage(): bool 'pending', 'paid', 'authorized', + 'shipping', // When having free or virtual products orders might go into shipping status real quick 'completed', // Completed is mainly to support digital products ]); }