diff options
| author | Shpuld Shpuldson <shp@cock.li> | 2020-09-06 15:28:09 +0300 |
|---|---|---|
| committer | Shpuld Shpuldson <shp@cock.li> | 2020-09-06 15:28:09 +0300 |
| commit | 40ca0b394ea066dea95c672eb0a42a35c9e65317 (patch) | |
| tree | 31ca497e91d5c9379186ab2fa5d217edf3dbb83b /src/components/status/status.js | |
| parent | a73b09c73202117ffa3fecf7a9185981d6696912 (diff) | |
add basic deletes support that works with masto WS
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 d263da68..5a6110c1 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -157,7 +157,7 @@ const Status = { return this.mergedConfig.hideFilteredStatuses }, hideStatus () { - return this.deleted || (this.muted && this.hideFilteredStatuses) + return (this.muted && this.hideFilteredStatuses) }, isFocused () { // retweet or root of an expanded conversation |
