diff --git a/Observer/SalesOrderPaymentPlaceEnd.php b/Observer/SalesOrderPaymentPlaceEnd.php index bb85ff1..9acd7e6 100644 --- a/Observer/SalesOrderPaymentPlaceEnd.php +++ b/Observer/SalesOrderPaymentPlaceEnd.php @@ -213,7 +213,7 @@ public function execute(\Magento\Framework\Event\Observer $observer) // If order fails screening and auto-cancel is enabled in admin config, cancel the order if ($this->configHelper->getAutoCancel($storeId)) { - if (isset($nofraudDecision) && ($nofraudDecision == 'fail' || $nofraudDecision == 'fraudulent')) { + if (isset($nofraudDecision) && $nofraudDecision == 'fail') { $this->orderProcessor->handleAutocancel($order, $nofraudDecision); } }