mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
VKAPI: Messages.getHistory fixed error code 500 due missing parameter (#702)
This commit is contained in:
parent
d9ec6a1692
commit
5769d4060f
1 changed files with 1 additions and 1 deletions
|
@ -284,7 +284,7 @@ final class Messages extends VKAPIRequestHandler
|
|||
return (object) $output;
|
||||
}
|
||||
|
||||
function getHistory(int $offset = 0, int $count = 20, int $user_id = -1, int $peer_id = -1, int $start_message_id = 0, int $rev = 0, int $extended = 0): object
|
||||
function getHistory(int $offset = 0, int $count = 20, int $user_id = -1, int $peer_id = -1, int $start_message_id = 0, int $rev = 0, int $extended = 0, string $fields = ""): object
|
||||
{
|
||||
$this->requireUser();
|
||||
|
||||
|
|
Loading…
Reference in a new issue