Notifications from now on don't show the authors posts. Fixes: https://github.com/vitorpamplona/amethyst/issues/111

This commit is contained in:
Vitor Pamplona
2023-02-21 21:52:16 -05:00
parent fd70d05768
commit 87975f0ca2
@@ -15,7 +15,7 @@ object NotificationFeedFilter: FeedFilter<Note>() {
override fun feed(): List<Note> {
return account.userProfile().taggedPosts
.filter { it.author == null || !account.isHidden(it.author!!) }
.filter { it.author == null || (!account.isHidden(it.author!!) && it.author != account.userProfile()) }
.filter {
it.event !is ChannelCreateEvent
&& it.event !is ChannelMetadataEvent