Skip to content
Snippets Groups Projects
Commit fe78ed78 authored by Shpuld Shpludson's avatar Shpuld Shpludson
Browse files

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

Don't filter own posts

See merge request pleroma/pleroma-fe!1323
parents 8c82bb61 cdb9b4ae
No related branches found
No related tags found
No related merge requests found
Pipeline #34213 passed
......@@ -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
......
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment