mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
VKAPI: Fix 500 error on Friends.get method
This commit is contained in:
parent
dae42b0179
commit
0a78fc2ad0
1 changed files with 1 additions and 1 deletions
|
@ -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) [
|
||||
|
|
Loading…
Reference in a new issue