From b304fc2a8f02f1590e59878204684ef65a9bd43e Mon Sep 17 00:00:00 2001 From: Amarnath C Date: Mon, 5 Aug 2024 07:46:14 +0530 Subject: [PATCH] Update mtproto.go bug fix. in timeoffsetting. --- mtproto.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mtproto.go b/mtproto.go index 5d60f1e6..e7eaa417 100755 --- a/mtproto.go +++ b/mtproto.go @@ -742,7 +742,7 @@ func (m *MTProto) offsetTime() { return } - if timeResponse.Unixtime < currentLocalTime { + if timeResponse.Unixtime <= currentLocalTime { return // -no need to offset time }