mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-06 15:13:57 +02:00
Fix loading comments.
This commit is contained in:
parent
5cc4066b65
commit
d965385356
1 changed files with 2 additions and 1 deletions
|
@ -580,7 +580,8 @@ bool RepliesList::processMessagesIsEmpty(const MTPmessages_Messages &result) {
|
|||
}
|
||||
}
|
||||
|
||||
return (list.size() > skipped);
|
||||
Ensures(list.size() >= skipped);
|
||||
return (list.size() == skipped);
|
||||
}
|
||||
|
||||
} // namespace Data
|
||||
|
|
Loading…
Add table
Reference in a new issue