From f506972c919e5569c2037c45ac282972f0829fda Mon Sep 17 00:00:00 2001 From: Nurmuhammet Allanov Date: Sun, 16 Nov 2025 18:05:56 +0500 Subject: [PATCH] wip --- .../OnlinePayment/Repositories/OnlinePaymentRepository.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php b/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php index bde48bd..b8aab54 100644 --- a/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php +++ b/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php @@ -270,10 +270,6 @@ class OnlinePaymentRepository $this->provider->setPassword($password); $response = $this->provider->checkPayment($orderId); - if ($response['errorCode'] == '99') { - return $this->paymentFailed('(REQUEST FAILURE)'); - } - if ($response['errorCode'] != '0') { return $this->paymentFailed($response['errorMessage']); }