mirror of https://github.com/procxx/kepka.git
Fix possible crash in dialogs saved peers.
This commit is contained in:
parent
0e38671224
commit
edadc51e05
|
@ -1842,10 +1842,13 @@ void DialogsInner::applyDialog(const MTPDdialog &dialog) {
|
||||||
void DialogsInner::addSavedPeersAfter(const QDateTime &date) {
|
void DialogsInner::addSavedPeersAfter(const QDateTime &date) {
|
||||||
auto &saved = cRefSavedPeersByTime();
|
auto &saved = cRefSavedPeersByTime();
|
||||||
while (!saved.isEmpty() && (date.isNull() || date < saved.lastKey())) {
|
while (!saved.isEmpty() && (date.isNull() || date < saved.lastKey())) {
|
||||||
const auto history = App::history(saved.last()->id);
|
const auto lastDate = saved.lastKey();
|
||||||
history->setChatsListTimeId(ServerTimeFromParsed(saved.lastKey()));
|
const auto lastPeer = saved.last();
|
||||||
|
saved.remove(lastDate, lastPeer);
|
||||||
|
|
||||||
|
const auto history = App::history(lastPeer);
|
||||||
|
history->setChatsListTimeId(ServerTimeFromParsed(lastDate));
|
||||||
_contactsNoDialogs->del(history);
|
_contactsNoDialogs->del(history);
|
||||||
saved.remove(saved.lastKey(), saved.last());
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue