From 3572c111f3f1730e6e8b0fb38a125d69aa1f9116 Mon Sep 17 00:00:00 2001 From: trilene Date: Sun, 10 Jan 2021 12:23:58 -0500 Subject: [PATCH] Fix call invite declined on another device --- src/timeline/TimelineModel.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/timeline/TimelineModel.cpp b/src/timeline/TimelineModel.cpp index 2b5b5794..852f584d 100644 --- a/src/timeline/TimelineModel.cpp +++ b/src/timeline/TimelineModel.cpp @@ -614,7 +614,9 @@ TimelineModel::addEvents(const mtx::responses::Timeline &timeline) [this](auto &event) { event.room_id = room_id_.toStdString(); if constexpr (std::is_same_v, - RoomEvent>) + RoomEvent> || + std::is_same_v, + RoomEvent>) emit newCallEvent(event); else { if (event.sender != http::client()->user_id().to_string())