From 83bf9dfd0e1a85abbfe13ff20b32efa54b2bcb4c Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Fri, 6 Mar 2026 14:45:52 +0100 Subject: [PATCH] Add missing case for LiveLocation sharing. --- .../impl/timeline/item/event/TimelineEventContentMapper.kt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libraries/matrix/impl/src/main/kotlin/io/element/android/libraries/matrix/impl/timeline/item/event/TimelineEventContentMapper.kt b/libraries/matrix/impl/src/main/kotlin/io/element/android/libraries/matrix/impl/timeline/item/event/TimelineEventContentMapper.kt index b1758fb734..f68b980768 100644 --- a/libraries/matrix/impl/src/main/kotlin/io/element/android/libraries/matrix/impl/timeline/item/event/TimelineEventContentMapper.kt +++ b/libraries/matrix/impl/src/main/kotlin/io/element/android/libraries/matrix/impl/timeline/item/event/TimelineEventContentMapper.kt @@ -134,6 +134,9 @@ class TimelineEventContentMapper( } is TimelineItemContent.CallInvite -> LegacyCallInviteContent is TimelineItemContent.RtcNotification -> CallNotifyContent + is TimelineItemContent.LiveLocation -> { + UnknownContent + } } } }