From c77a00c207af7d4bf2662f1fc8680cdff0b742e6 Mon Sep 17 00:00:00 2001 From: merdan Date: Thu, 14 May 2020 16:13:55 +0500 Subject: [PATCH] payment responce errorMessage bug fix --- app/Payment/PaymentResponse.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Payment/PaymentResponse.php b/app/Payment/PaymentResponse.php index 3f9d80a4..f52aefcb 100644 --- a/app/Payment/PaymentResponse.php +++ b/app/Payment/PaymentResponse.php @@ -31,7 +31,7 @@ abstract class PaymentResponse public function errorMessage(){ if(!$this->exception_message) { - return $this->response_data['ErrorMessage'];} + return $this->response_data['errorMessage'];} else return $this->exception_message; }