mirror of https://github.com/procxx/kepka.git
Make sure we request pending dialog entries.
This commit is contained in:
parent
91fb9917bc
commit
f2ef109940
|
@ -238,6 +238,10 @@ void Histories::requestDialogEntry(
|
||||||
if (!ok) {
|
if (!ok) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
postponeRequestDialogEntries();
|
||||||
|
}
|
||||||
|
|
||||||
|
void Histories::postponeRequestDialogEntries() {
|
||||||
if (_dialogRequestsPending.size() > 1) {
|
if (_dialogRequestsPending.size() > 1) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -655,6 +659,7 @@ void Histories::finishSentRequest(
|
||||||
Assert(ok);
|
Assert(ok);
|
||||||
_dialogRequests.erase(i);
|
_dialogRequests.erase(i);
|
||||||
state->postponedRequestEntry = false;
|
state->postponedRequestEntry = false;
|
||||||
|
postponeRequestDialogEntries();
|
||||||
}
|
}
|
||||||
checkEmptyState(history);
|
checkEmptyState(history);
|
||||||
}
|
}
|
||||||
|
|
|
@ -105,6 +105,7 @@ private:
|
||||||
int id);
|
int id);
|
||||||
[[nodiscard]] bool postponeHistoryRequest(const State &state) const;
|
[[nodiscard]] bool postponeHistoryRequest(const State &state) const;
|
||||||
[[nodiscard]] bool postponeEntryRequest(const State &state) const;
|
[[nodiscard]] bool postponeEntryRequest(const State &state) const;
|
||||||
|
void postponeRequestDialogEntries();
|
||||||
|
|
||||||
void sendDialogRequests();
|
void sendDialogRequests();
|
||||||
void applyPeerDialogs(const MTPmessages_PeerDialogs &dialogs);
|
void applyPeerDialogs(const MTPmessages_PeerDialogs &dialogs);
|
||||||
|
|
Loading…
Reference in New Issue