Fix loading comments.

This commit is contained in:
John Preston 2020-10-02 16:06:29 +03:00
parent 5cc4066b65
commit d965385356
1 changed files with 2 additions and 1 deletions

View File

@ -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