Fix incorrect param type in apply_channel_difference (#4185)

This commit is contained in:
Shubham Kumar 2023-08-29 22:10:07 +05:30 committed by GitHub
parent 72f16ef73e
commit 9b1d9aa672
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -798,7 +798,7 @@ class MessageBox:
updates=diff.other_updates, updates=diff.other_updates,
users=diff.users, users=diff.users,
chats=diff.chats, chats=diff.chats,
date=1, # anything not-None date=epoch(),
seq=NO_SEQ, # this way date is not used seq=NO_SEQ, # this way date is not used
), chat_hashes, updates) ), chat_hashes, updates)