Update FAQ

This commit is contained in:
Lonami Exo
2023-04-06 12:38:25 +02:00
parent f9001bc8e0
commit 3e64ea35ff
3 changed files with 41 additions and 4 deletions

View File

@@ -208,12 +208,12 @@ class MTProtoState:
time_delta = now - remote_msg_time
if time_delta > MSG_TOO_OLD_DELTA:
self._log.warning('Server sent a very old message with ID %d, ignoring', remote_msg_id)
self._log.warning('Server sent a very old message with ID %d, ignoring (see FAQ for details)', remote_msg_id)
self._count_ignored()
return None
if -time_delta > MSG_TOO_NEW_DELTA:
self._log.warning('Server sent a very new message with ID %d, ignoring', remote_msg_id)
self._log.warning('Server sent a very new message with ID %d, ignoring (see FAQ for details)', remote_msg_id)
self._count_ignored()
return None