payment responce errorMessage bug fix

This commit is contained in:
merdan 2020-05-14 16:13:55 +05:00
parent 2731e384dd
commit c77a00c207
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}