From 0a78fc2ad05a2b1ea3b4676224d63eae5cb6a45e Mon Sep 17 00:00:00 2001 From: veselcraft Date: Sun, 27 Mar 2022 16:39:21 +0300 Subject: [PATCH] VKAPI: Fix 500 error on Friends.get method --- VKAPI/Handlers/Friends.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VKAPI/Handlers/Friends.php b/VKAPI/Handlers/Friends.php index c9125a47..2e917f2d 100644 --- a/VKAPI/Handlers/Friends.php +++ b/VKAPI/Handlers/Friends.php @@ -25,7 +25,7 @@ final class Friends extends VKAPIRequestHandler $usersApi = new Users($this->getUser()); if (!is_null($fields)) { - $response = $usersApi->get(implode(',', $friends), $fields, 0, $count, true); // FIXME + $response = $usersApi->get(implode(',', $friends), $fields, 0, $count); // FIXME } return (object) [