From 774d86409629f305a33c5f07d5b78dc37e72935f Mon Sep 17 00:00:00 2001 From: trilene <trilene@runbox.com> Date: Mon, 13 Jul 2020 19:45:41 -0400 Subject: [PATCH] Hide CallCandidates events from the timeline --- src/timeline/TimelineModel.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/timeline/TimelineModel.cpp b/src/timeline/TimelineModel.cpp index aaaf7d4ae..26a2f72eb 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<mtx::events::RoomEvent<mtx::events::msg::Reaction>>(&event)) { + if (!std::get_if<mtx::events::RoomEvent<mtx::events::msg::Reaction>>(&event) && + !std::get_if<mtx::events::RoomEvent<mtx::events::msg::CallCandidates>>(&event)) { beginInsertRows(QModelIndex(), 0, 0); this->eventOrder.insert(this->eventOrder.begin(), txn_id_qstr); endInsertRows(); -- GitLab