From c3f1b748a3d815421e99afcf97423fc8a438b8c1 Mon Sep 17 00:00:00 2001 From: ariskotsomitopoulos Date: Tue, 15 Mar 2022 16:34:17 +0100 Subject: [PATCH] Fix thread deleted root message summary --- .../home/room/detail/timeline/factory/MessageItemFactory.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vector/src/main/java/im/vector/app/features/home/room/detail/timeline/factory/MessageItemFactory.kt b/vector/src/main/java/im/vector/app/features/home/room/detail/timeline/factory/MessageItemFactory.kt index 659cef2b37..3189954e20 100644 --- a/vector/src/main/java/im/vector/app/features/home/room/detail/timeline/factory/MessageItemFactory.kt +++ b/vector/src/main/java/im/vector/app/features/home/room/detail/timeline/factory/MessageItemFactory.kt @@ -155,7 +155,7 @@ class MessageItemFactory @Inject constructor( if (event.root.isRedacted()) { // message is redacted - val attributes = messageItemAttributesFactory.create(null, informationData, callback, params.reactionsSummaryEvents) + val attributes = messageItemAttributesFactory.create(null, informationData, callback, params.reactionsSummaryEvents, threadDetails) return buildRedactedItem(attributes, highlight) }