logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: fe78ed78fdc95bb5dac4d11136673da4e5e57f4b
parent 8c82bb61f1a3fa2e8d9d57b00fa5bf66b0577f31
Author: Shpuld Shpludson <shp@cock.li>
Date:   Mon, 18 Jan 2021 13:09:25 +0000

Merge branch 'feat/dont-filter-own-posts' into 'develop'

Don't filter own posts

See merge request pleroma/pleroma-fe!1323

Diffstat:

MCHANGELOG.md3+++
Msrc/components/status/status.js1+
2 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -12,6 +12,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Follows/Followers tabs on user profiles now display the content properly. - Handle punycode in screen names +### Changed +- Don't filter own posts when they hit your wordfilter + ## [2.2.2] - 2020-12-22 ### Added - Mouseover titles for emojis in reaction picker diff --git a/src/components/status/status.js b/src/components/status/status.js @@ -157,6 +157,7 @@ const Status = { return muteWordHits(this.status, this.muteWords) }, muted () { + if (this.statusoid.user.id === this.currentUser.id) return false const { status } = this const { reblog } = status const relationship = this.$store.getters.relationship(status.user.id)