Fix date empty

This commit is contained in:
Kacnep89 2023-09-06 12:33:34 +05:00
parent 9b1d9aa672
commit 7b19132af1

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)