From 4b229534064c12e9e4b3199cf00cf6e8a55cce0a Mon Sep 17 00:00:00 2001 From: Nicolas Barbey Date: Mon, 27 Oct 2025 16:21:18 +0100 Subject: [PATCH] fix bug with payplug oney module --- Config/module.xml | 2 +- EventListener/NotificationListener.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Config/module.xml b/Config/module.xml index 32b2450..84c11f7 100755 --- a/Config/module.xml +++ b/Config/module.xml @@ -17,7 +17,7 @@ en_US fr_FR - 2.1.2 + 2.1.3 Vincent Lopes-Vicente diff --git a/EventListener/NotificationListener.php b/EventListener/NotificationListener.php index 3512af8..576658b 100755 --- a/EventListener/NotificationListener.php +++ b/EventListener/NotificationListener.php @@ -65,6 +65,7 @@ public function handlePaymentNotification(PaymentNotificationEvent $event) } $order = OrderQuery::create() + ->filterByPaymentModuleId(PayPlugModule::getModuleId()) ->filterByTransactionRef($transactionRef) ->findOne();