diff --git a/resources/langs/nheko_en.ts b/resources/langs/nheko_en.ts
index 27d739f2f71037dce27acf266fda919ccc215668..f2bb04f9aa544b443431158770ac6eee0da48b97 100644
--- a/resources/langs/nheko_en.ts
+++ b/resources/langs/nheko_en.ts
@@ -406,8 +406,8 @@ Example: https://server.my:8787</translation>
     </message>
     <message>
         <location line="+6"/>
-        <source>%1 placed a voice call.</source>
-        <translation>%1 placed a voice call.</translation>
+        <source>%1 placed a %2 call.</source>
+        <translation>%1 placed a %2 call.</translation>
     </message>
     <message>
         <location line="+6"/>
diff --git a/resources/qml/delegates/MessageDelegate.qml b/resources/qml/delegates/MessageDelegate.qml
index 52e628be9cd840b62bf699f7b0c2b60e6e386100..ed18b2e5dea44f6dc6c4fbef35c63ee0cb10e6c8 100644
--- a/resources/qml/delegates/MessageDelegate.qml
+++ b/resources/qml/delegates/MessageDelegate.qml
@@ -93,7 +93,7 @@ Item {
 		DelegateChoice {
 			roleValue: MtxEvent.CallInvite
 			NoticeMessage {
-				text: qsTr("%1 placed a voice call.").arg(model.data.userName)
+				text: qsTr("%1 placed a %2 call.").arg(model.data.userName).arg(model.data.callType)
 			}
 		}
 		DelegateChoice {
diff --git a/src/EventAccessors.cpp b/src/EventAccessors.cpp
index 7071819b0c64ebd9ac0500f170bbab6c0a52767d..043e24a2659ad2afdabb10f9bbadfd61b2853724 100644
--- a/src/EventAccessors.cpp
+++ b/src/EventAccessors.cpp
@@ -1,5 +1,7 @@
 #include "EventAccessors.h"
 
+#include <algorithm>
+#include <cctype>
 #include <type_traits>
 
 namespace {
@@ -65,6 +67,22 @@ struct EventRoomTopic
         }
 };
 
+struct CallType
+{
+        template<class T>
+        std::string operator()(const T &e)
+        {
+                if constexpr (std::is_same_v<mtx::events::RoomEvent<mtx::events::msg::CallInvite>, T>) {
+                  const char video[] = "m=video";
+                  const std::string &sdp = e.content.sdp;
+                  return std::search(sdp.cbegin(), sdp.cend(), std::cbegin(video), std::cend(video) - 1,
+                    [](unsigned char c1, unsigned char c2) {return std::tolower(c1) == std::tolower(c2);})
+                      != sdp.cend() ? "video" : "voice";
+                }
+                return std::string();
+        }
+};
+
 struct EventBody
 {
         template<class C>
@@ -325,6 +343,12 @@ mtx::accessors::room_topic(const mtx::events::collections::TimelineEvents &event
         return std::visit(EventRoomTopic{}, event);
 }
 
+std::string
+mtx::accessors::call_type(const mtx::events::collections::TimelineEvents &event)
+{
+        return std::visit(CallType{}, event);
+}
+
 std::string
 mtx::accessors::body(const mtx::events::collections::TimelineEvents &event)
 {
diff --git a/src/EventAccessors.h b/src/EventAccessors.h
index a7577d8634a80c69f4d9aa396f6346fa8a0c7af2..fa70f3eb63306aac1f610d4ef7c7226cf695bad9 100644
--- a/src/EventAccessors.h
+++ b/src/EventAccessors.h
@@ -30,6 +30,9 @@ room_name(const mtx::events::collections::TimelineEvents &event);
 std::string
 room_topic(const mtx::events::collections::TimelineEvents &event);
 
+std::string
+call_type(const mtx::events::collections::TimelineEvents &event);
+
 std::string
 body(const mtx::events::collections::TimelineEvents &event);
 
diff --git a/src/timeline/TimelineModel.cpp b/src/timeline/TimelineModel.cpp
index 8d68f24cf5ddb113028603e18aa82c3b1def3e93..e4677f538e688c084c566ea83199e24b61d260cf 100644
--- a/src/timeline/TimelineModel.cpp
+++ b/src/timeline/TimelineModel.cpp
@@ -282,6 +282,7 @@ TimelineModel::roleNames() const
           {RoomId, "roomId"},
           {RoomName, "roomName"},
           {RoomTopic, "roomTopic"},
+          {CallType, "callType"},
           {Dump, "dump"},
         };
 }
@@ -435,6 +436,8 @@ TimelineModel::data(const QString &id, int role) const
                 return QVariant(QString::fromStdString(room_name(event)));
         case RoomTopic:
                 return QVariant(QString::fromStdString(room_topic(event)));
+        case CallType:
+                return QVariant(QString::fromStdString(call_type(event)));
         case Dump: {
                 QVariantMap m;
                 auto names = roleNames();
@@ -464,6 +467,7 @@ TimelineModel::data(const QString &id, int role) const
                 m.insert(names[ReplyTo], data(id, static_cast<int>(ReplyTo)));
                 m.insert(names[RoomName], data(id, static_cast<int>(RoomName)));
                 m.insert(names[RoomTopic], data(id, static_cast<int>(RoomTopic)));
+                m.insert(names[CallType], data(id, static_cast<int>(CallType)));
 
                 return QVariant(m);
         }
diff --git a/src/timeline/TimelineModel.h b/src/timeline/TimelineModel.h
index ed7036c76bfcfd3e66cdd9d2d6a64de84f3ba7d1..95584d36908f528b15da86b2d1bee0d3cd7ec36a 100644
--- a/src/timeline/TimelineModel.h
+++ b/src/timeline/TimelineModel.h
@@ -170,6 +170,7 @@ public:
                 RoomId,
                 RoomName,
                 RoomTopic,
+                CallType,
                 Dump,
         };