diff options
| author | Alexander Tumin <iamtakingiteasy@eientei.org> | 2022-03-09 07:56:43 +0300 |
|---|---|---|
| committer | Alexander Tumin <iamtakingiteasy@eientei.org> | 2022-03-09 07:56:43 +0300 |
| commit | 450145dd6b0c91e80b957d7c39dbf6b809b056be (patch) | |
| tree | 32f10169e5f0ee1c80bd807c300616c1a479cbb6 /src/components/status/status.js | |
| parent | 2b7f12613ec04e3ce8be62b169457ad62aa83a65 (diff) | |
Do not mute bot posts in notifications
Diffstat (limited to 'src/components/status/status.js')
| -rw-r--r-- | src/components/status/status.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js index 282e85fb..2c3e079f 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -199,7 +199,7 @@ const Status = { // Wordfiltered this.muteWordHits.length > 0 || // bot status - (this.muteBotStatuses && this.botStatus) + (this.muteBotStatuses && this.botStatus && !this.compact) return !this.unmuted && !this.shouldNotMute && reasonsToMute }, userIsMuted () { |
