Per il dottore

This commit is contained in:
Daniil Gentili 2017-07-26 23:49:33 +02:00
parent 34010fa4e6
commit bf14298188

View File

@ -455,7 +455,7 @@ trait PeerHandler
$offset = -$limit;
$filters = ['channelParticipantsBanned', 'channelParticipantsAdmins', 'channelParticipantsKicked', 'channelParticipantsBots', 'channelParticipantsRecent'];
$gres = $this->method_call('channels.getParticipants', ['channel' => $full['InputChannel'], 'filter' => ['_' => 'channelParticipantsRecent'], 'offset' => $offset += $limit, 'limit' => $limit], ['datacenter' => $this->datacenter->curdc]);
$count = $res['participants_count'] + $res['kicked_count'] + $res['admin_count'];
$count = $res['participants_count'] + (isset($res['kicked_count']) ? $res['kicked_count'] : 0) + (isset($res['admins_count']) ? $res['admins_count'] : 0) + (isset($res['banned_count']) ? $res['banned_count'] : 0);
while (count($filters)) {
$filter = array_pop($filters);
while ($offset <= $count) {