mirror of
https://github.com/openvk/openvk
synced 2024-12-22 16:42:32 +03:00
VKAPI: Messages.getHistory return profile of message owners (#700)
This commit is contained in:
parent
a43f5dac39
commit
d9ec6a1692
1 changed files with 9 additions and 1 deletions
|
@ -316,10 +316,18 @@ final class Messages extends VKAPIRequestHandler
|
|||
$results[] = $rMsg;
|
||||
}
|
||||
|
||||
return (object) [
|
||||
$output = [
|
||||
"count" => sizeof($results),
|
||||
"items" => $results,
|
||||
];
|
||||
|
||||
if ($extended == 1) {
|
||||
$users[] = $this->getUser()->getId();
|
||||
$users[] = $user_id;
|
||||
$output["profiles"] = (!empty($users) ? (new APIUsers($this->getUser()))->get(implode(',', $users), $fields) : []);
|
||||
}
|
||||
|
||||
return (object) $output;
|
||||
}
|
||||
|
||||
function getLongPollHistory(int $ts = -1, int $preview_length = 0, int $events_limit = 1000, int $msgs_limit = 1000): object
|
||||
|
|
Loading…
Reference in a new issue