Fix date empty (#4191)

This commit is contained in:
Kacnep89 2023-09-06 19:47:46 +05:00 committed by GitHub
parent 9b1d9aa672
commit e928fbdac0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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