mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2026-01-03 14:04:51 +00:00
Don't process empty messages
This commit is contained in:
parent
61ba9dca8b
commit
5bf64ac444
1 changed files with 18 additions and 15 deletions
|
|
@ -634,6 +634,9 @@ class Client:
|
|||
pts_count = getattr(update, "pts_count", None)
|
||||
|
||||
if isinstance(update, types.UpdateNewChannelMessage):
|
||||
message = update.message
|
||||
|
||||
if not isinstance(message, types.MessageEmpty):
|
||||
diff = self.send(
|
||||
functions.updates.GetChannelDifference(
|
||||
channel=self.resolve_peer(update.message.to_id.channel_id),
|
||||
|
|
|
|||
Loading…
Reference in a new issue