diff --git a/CHANGES.rst b/CHANGES.rst index dcc6b69d9..bc692af8d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -9,7 +9,8 @@ Improvements: * Reactions: Show who reacted (#2591). Bug fix: -* Crash when leaving settings due to backup section refresh animation. + * Crash when leaving settings due to backup section refresh animation. + * Reactions: Do not display reactions on redacted events in timeline. Changes in 0.9.1 (2019-07-17) =============================================== diff --git a/Riot/Modules/Room/DataSources/RoomDataSource.m b/Riot/Modules/Room/DataSources/RoomDataSource.m index 376db16c3..3b05bc638 100644 --- a/Riot/Modules/Room/DataSources/RoomDataSource.m +++ b/Riot/Modules/Room/DataSources/RoomDataSource.m @@ -242,8 +242,8 @@ BubbleReactionsView *reactionsView; - if (reactions && !isCollapsableCellCollapsed) - { + if (!component.event.isRedactedEvent && reactions && !isCollapsableCellCollapsed) + { BOOL showAllReactions = [cellData showAllReactionsForEvent:componentEventId]; BubbleReactionsViewModel *bubbleReactionsViewModel = [[BubbleReactionsViewModel alloc] initWithAggregatedReactions:reactions eventId:componentEventId