Getdialogs bugfix
This commit is contained in:
parent
310b489dfb
commit
d968477125
@ -50,7 +50,7 @@ function getUrl($constructor, $type)
|
||||
{
|
||||
$changed = str_replace('.', '_', $constructor);
|
||||
|
||||
return "[$constructor](https://github.com/danog/MadelineProtoDocs/blob/geochats/docs/API_docs/$type/$changed.md)";
|
||||
//return "[$constructor](https://github.com/danog/MadelineProtoDocs/blob/geochats/docs/API_docs/$type/$changed.md)";
|
||||
return "[$constructor](https://docs.madelineproto.xyz/API_docs/$type/$changed.html)";
|
||||
}
|
||||
$old = getTL($argv[1]);
|
||||
|
@ -57,7 +57,7 @@ trait DialogHandler
|
||||
$last_peer = 0;
|
||||
$last_date = 0;
|
||||
$last_id = 0;
|
||||
$res['messages'] = \array_reverse($res['messages']);
|
||||
$res['messages'] = \array_reverse($res['messages'] ?? []);
|
||||
foreach (\array_reverse($res['dialogs']) as $dialog) {
|
||||
$id = $this->get_id($dialog['peer']);
|
||||
if (!isset($dialogs[$id])) {
|
||||
|
Loading…
Reference in New Issue
Block a user