Fix own messages not showing as encrypted

This commit is contained in:
Nicolas Werner 2020-04-23 15:28:46 +02:00
parent d5e1475a5c
commit b00e624fb0
1 changed files with 7 additions and 7 deletions

View File

@ -477,14 +477,14 @@ TimelineModel::addEvents(const mtx::responses::Timeline &timeline)
std::vector<QString> ids = internalAddEvents(timeline.events);
if (ids.empty())
return;
if (!ids.empty()) {
beginInsertRows(QModelIndex(), 0, static_cast<int>(ids.size() - 1));
this->eventOrder.insert(this->eventOrder.begin(), ids.rbegin(), ids.rend());
endInsertRows();
}
beginInsertRows(QModelIndex(), 0, static_cast<int>(ids.size() - 1));
this->eventOrder.insert(this->eventOrder.begin(), ids.rbegin(), ids.rend());
endInsertRows();
updateLastMessage();
if (!timeline.events.empty())
updateLastMessage();
}
template<typename T>