Apply fixes from StyleCI
This commit is contained in:
parent
5f056d12d7
commit
ac32bb6bc6
@ -459,7 +459,11 @@ trait PeerHandler
|
|||||||
try {
|
try {
|
||||||
$gres = $this->method_call('channels.getParticipants', ['channel' => $full['InputChannel'], 'filter' => ['_' => $filter, 'q' => ''], 'offset' => $offset += $limit, 'limit' => $limit], ['datacenter' => $this->datacenter->curdc]);
|
$gres = $this->method_call('channels.getParticipants', ['channel' => $full['InputChannel'], 'filter' => ['_' => $filter, 'q' => ''], 'offset' => $offset += $limit, 'limit' => $limit], ['datacenter' => $this->datacenter->curdc]);
|
||||||
} catch (\danog\MadelineProto\RPCErrorException $e) {
|
} catch (\danog\MadelineProto\RPCErrorException $e) {
|
||||||
if ($e->rpc === 'CHAT_ADMIN_REQUIRED') continue; else throw $e;
|
if ($e->rpc === 'CHAT_ADMIN_REQUIRED') {
|
||||||
|
continue;
|
||||||
|
} else {
|
||||||
|
throw $e;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
$count = $gres['count'];
|
$count = $gres['count'];
|
||||||
while ($offset <= $count) {
|
while ($offset <= $count) {
|
||||||
@ -514,7 +518,6 @@ trait PeerHandler
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ($fullfetch || $send) {
|
if ($fullfetch || $send) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user