mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Fix reverse iterator crash
This commit is contained in:
parent
b45f35cb51
commit
1024198228
1 changed files with 5 additions and 4 deletions
|
@ -167,11 +167,12 @@ TimelineView::addBackwardsEvents(const QString &room_id, const RoomMessages &msg
|
|||
|
||||
// Parse in reverse order to determine where we should not show sender's
|
||||
// name.
|
||||
auto it = msgs.chunk().constEnd();
|
||||
while (it != msgs.chunk().constBegin()) {
|
||||
--it;
|
||||
auto ii = msgs.chunk().size();
|
||||
while (ii != 0) {
|
||||
--ii;
|
||||
|
||||
TimelineItem *item = parseMessageEvent((*it).toObject(), TimelineDirection::Top);
|
||||
TimelineItem *item =
|
||||
parseMessageEvent(msgs.chunk().at(ii).toObject(), TimelineDirection::Top);
|
||||
|
||||
if (item != nullptr)
|
||||
items.push_back(item);
|
||||
|
|
Loading…
Reference in a new issue