1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-27 05:34:42 +01:00

Small fix

This commit is contained in:
Daniil Gentili 2023-07-08 17:53:41 +02:00
parent 9f4a1d5dc0
commit c5b7a06641
Signed by: danog
GPG Key ID: 8C1BE3B34B230CA7

View File

@ -668,7 +668,7 @@ trait PeerHandler
}
try {
return $this->genAll($chat, $folder_id, $type);
} catch (PeerNotInDbException) {
} catch (PeerNotInDbException $e) {
unset($this->chats[$id]);
throw $e;
}