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) {