Fix state assertion in reading requets.

This commit is contained in:
John Preston 2020-02-24 12:57:24 +04:00
parent f1c2d4fe3d
commit 91a6632a1b
1 changed files with 2 additions and 1 deletions

View File

@ -423,7 +423,6 @@ void Histories::sendReadRequest(not_null<History*> history, State &state) {
const auto finished = [=] { const auto finished = [=] {
const auto state = lookup(history); const auto state = lookup(history);
Assert(state != nullptr); Assert(state != nullptr);
Assert(state->sentReadTill >= tillId);
if (state->sentReadTill == tillId) { if (state->sentReadTill == tillId) {
state->sentReadDone = true; state->sentReadDone = true;
@ -432,6 +431,8 @@ void Histories::sendReadRequest(not_null<History*> history, State &state) {
} else { } else {
state->sentReadTill = 0; state->sentReadTill = 0;
} }
} else {
Assert(!state->sentReadTill || state->sentReadTill > tillId);
} }
sendReadRequests(); sendReadRequests();
finish(); finish();