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, const RowDescriptor &to,
JumpSkip skip) { JumpSkip skip) {
auto result = to; auto result = to;
if (session().supportMode() && result.key) { if (result.key) {
const auto down = (skip == JumpSkip::NextOrEnd) const auto down = (skip == JumpSkip::NextOrEnd)
|| (skip == JumpSkip::NextOrOriginal); || (skip == JumpSkip::NextOrOriginal);
while (!result.key.entry()->chatListUnreadCount() const auto needSkip = [&] {
&& !result.key.entry()->chatListUnreadMark()) { return (result.key.folder() != nullptr)
|| (session().supportMode()
&& !result.key.entry()->chatListUnreadCount()
&& !result.key.entry()->chatListUnreadMark());
};
while (needSkip()) {
const auto next = down const auto next = down
? chatListEntryAfter(result) ? chatListEntryAfter(result)
: chatListEntryBefore(result); : chatListEntryBefore(result);