Fix jump to first chat with archive.

This commit is contained in:
John Preston 2019-08-24 16:03:26 +03:00
parent a465117689
commit e2c1c4c8de
1 changed files with 8 additions and 3 deletions

View File

@ -2993,11 +2993,16 @@ RowDescriptor InnerWidget::computeJump(
const RowDescriptor &to,
JumpSkip skip) {
auto result = to;
if (session().supportMode() && result.key) {
if (result.key) {
const auto down = (skip == JumpSkip::NextOrEnd)
|| (skip == JumpSkip::NextOrOriginal);
while (!result.key.entry()->chatListUnreadCount()
&& !result.key.entry()->chatListUnreadMark()) {
const auto needSkip = [&] {
return (result.key.folder() != nullptr)
|| (session().supportMode()
&& !result.key.entry()->chatListUnreadCount()
&& !result.key.entry()->chatListUnreadMark());
};
while (needSkip()) {
const auto next = down
? chatListEntryAfter(result)
: chatListEntryBefore(result);