From d0d327620bb95f6220d6103a1697fb0f01d39be6 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Tue, 2 Jul 2019 13:56:27 +0200 Subject: [PATCH] hide reactions for redacted events --- src/components/views/rooms/EventTile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/views/rooms/EventTile.js b/src/components/views/rooms/EventTile.js index 988bf7eb3c..192e203f35 100644 --- a/src/components/views/rooms/EventTile.js +++ b/src/components/views/rooms/EventTile.js @@ -681,7 +681,7 @@ module.exports = withMatrixClient(React.createClass({ : null; let reactionsRow; - if (SettingsStore.isFeatureEnabled("feature_reactions")) { + if (SettingsStore.isFeatureEnabled("feature_reactions") && !isRedacted) { const ReactionsRow = sdk.getComponent('messages.ReactionsRow'); reactionsRow =