From 4a277eee39e1807a61a73528c8377fc49912dd97 Mon Sep 17 00:00:00 2001 From: Ireina <140869597+re-zero001@users.noreply.github.com> Date: Thu, 30 Apr 2026 10:13:30 +0800 Subject: [PATCH] fix: subtract one hour from message date in bubble preview --- Telegram/SourceFiles/ayu/ui/components/message_preview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/ayu/ui/components/message_preview.cpp b/Telegram/SourceFiles/ayu/ui/components/message_preview.cpp index 31780a4411..79d9de000f 100644 --- a/Telegram/SourceFiles/ayu/ui/components/message_preview.cpp +++ b/Telegram/SourceFiles/ayu/ui/components/message_preview.cpp @@ -85,7 +85,7 @@ MessagePreview::MessagePreview( .replyTo = FullReplyTo{ .messageId = _state->reply->data()->fullId(), }, - .date = base::unixtime::now(), + .date = base::unixtime::now() - 3600, }, TextWithEntities{ u"You need to go outside and touch some grass..."_q }, MTP_messageMediaEmpty());