From 49dd808e251fe7d7b1358fbd82d5b9b4f60e91c5 Mon Sep 17 00:00:00 2001 From: ghost Date: Wed, 6 Dec 2023 02:27:41 +0200 Subject: [PATCH] fix kevaPending return value --- src/Client.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Client.php b/src/Client.php index f9c7b4f..7b5a84b 100644 --- a/src/Client.php +++ b/src/Client.php @@ -364,9 +364,9 @@ class Client $response = $this->_execute(); - if (!empty($response) && is_array($response)) + if (!empty($response['result']) && is_array($response['result'])) { - return $response; + return $response['result']; } return null;