[backend/api-shared] Fix typo

This commit is contained in:
Laura Hausmann 2024-09-27 19:52:41 +02:00
parent 5192b58150
commit f1b7218c60
No known key found for this signature in database
GPG key ID: D044E84C5BE01605

View file

@ -515,7 +515,7 @@ public static class QueryableExtensions
!hidden.Contains(note.ReplyUserId) &&
note.Mentions.IsDisjoint(mentionsHidden) &&
(note.Renote == null || !hidden.Contains(note.Renote.RenoteUserId)) &&
(note.Renote == null || !note.Renote.Mentions.IsDisjoint(mentionsHidden));
(note.Renote == null || note.Renote.Mentions.IsDisjoint(mentionsHidden));
}
return note => !hidden.Contains(note.UserId) &&