From 493de5c0053b3bef7a0219144ff9bcca08f3a900 Mon Sep 17 00:00:00 2001 From: kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com> Date: Thu, 30 Jan 2025 17:14:35 +0000 Subject: [PATCH] [bugfix] fix boost of account ID check (#3709) --- internal/typeutils/internaltofrontend.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/typeutils/internaltofrontend.go b/internal/typeutils/internaltofrontend.go index d5c7cb0b1..71ff71f8b 100644 --- a/internal/typeutils/internaltofrontend.go +++ b/internal/typeutils/internaltofrontend.go @@ -943,8 +943,8 @@ func (c *Converter) statusToAPIFilterResults( // Both mutes and filters can expire. now := time.Now() - // If requesting account mutes the author (taking boosts into account), hide it. - if (s.BoostOfAccountID != "" && mutes.Matches(s.AccountID, filterContext, now)) || + // If requesting account mutes the author (taking boosts into account), hide the status. + if (s.BoostOfAccountID != "" && mutes.Matches(s.BoostOfAccountID, filterContext, now)) || mutes.Matches(s.AccountID, filterContext, now) { return nil, statusfilter.ErrHideStatus }