diff --git a/src/timeline/TimelineModel.cpp b/src/timeline/TimelineModel.cpp index aaaf7d4a..26a2f72e 100644 --- a/src/timeline/TimelineModel.cpp +++ b/src/timeline/TimelineModel.cpp @@ -1593,7 +1593,8 @@ TimelineModel::addPendingMessage(mtx::events::collections::TimelineEvents event) QString txn_id_qstr = QString::fromStdString(mtx::accessors::event_id(event)); pending.push_back(txn_id_qstr); - if (!std::get_if>(&event)) { + if (!std::get_if>(&event) && + !std::get_if>(&event)) { beginInsertRows(QModelIndex(), 0, 0); this->eventOrder.insert(this->eventOrder.begin(), txn_id_qstr); endInsertRows();