From 80273c57d03a244d31b599b547f6ccca3f55e6c2 Mon Sep 17 00:00:00 2001 From: John Preston Date: Sun, 11 Jun 2017 12:26:34 +0200 Subject: [PATCH] Fix jumping to an old group message before migration. Fixes #3513. --- Telegram/SourceFiles/historywidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/historywidget.cpp b/Telegram/SourceFiles/historywidget.cpp index d6281872e..9bc30a2c5 100644 --- a/Telegram/SourceFiles/historywidget.cpp +++ b/Telegram/SourceFiles/historywidget.cpp @@ -4891,7 +4891,7 @@ int HistoryWidget::countInitialScrollTop() { auto result = ScrollMax; if (_history->scrollTopItem || (_migrated && _migrated->scrollTopItem)) { result = _list->historyScrollTop(); - } else if (_showAtMsgId && (_showAtMsgId > 0 && -_showAtMsgId < ServerMaxMsgId)) { + } else if (_showAtMsgId && (_showAtMsgId > 0 || -_showAtMsgId < ServerMaxMsgId)) { auto item = getItemFromHistoryOrMigrated(_showAtMsgId); auto itemTop = _list->itemTop(item); if (itemTop < 0) {