mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-19 14:12:13 +02:00
Merge pull request #2618 from vector-im/fix_redacted_event_reactions
RoomDataSource: Do not display reactions when event is redacted
This commit is contained in:
+2
-1
@@ -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)
|
||||
===============================================
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user