summaryrefslogtreecommitdiff
path: root/internal/typeutils/internaltofrontend.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/typeutils/internaltofrontend.go')
-rw-r--r--internal/typeutils/internaltofrontend.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/internal/typeutils/internaltofrontend.go b/internal/typeutils/internaltofrontend.go
index d9c8748f5..d5c7cb0b1 100644
--- a/internal/typeutils/internaltofrontend.go
+++ b/internal/typeutils/internaltofrontend.go
@@ -943,8 +943,9 @@ func (c *Converter) statusToAPIFilterResults(
// Both mutes and filters can expire.
now := time.Now()
- // If the requesting account mutes the account that created this status, hide the status.
- if mutes.Matches(s.AccountID, filterContext, now) {
+ // If requesting account mutes the author (taking boosts into account), hide it.
+ if (s.BoostOfAccountID != "" && mutes.Matches(s.AccountID, filterContext, now)) ||
+ mutes.Matches(s.AccountID, filterContext, now) {
return nil, statusfilter.ErrHideStatus
}