fix kevaPending return value

This commit is contained in:
ghost 2023-12-06 02:27:41 +02:00
parent 34ffb54c5d
commit 49dd808e25

View File

@ -364,9 +364,9 @@ class Client
$response = $this->_execute(); $response = $this->_execute();
if (!empty($response) && is_array($response)) if (!empty($response['result']) && is_array($response['result']))
{ {
return $response; return $response['result'];
} }
return null; return null;