[backend/api-shared] Fix typo
This commit is contained in:
parent
5192b58150
commit
f1b7218c60
1 changed files with 1 additions and 1 deletions
|
@ -515,7 +515,7 @@ public static class QueryableExtensions
|
||||||
!hidden.Contains(note.ReplyUserId) &&
|
!hidden.Contains(note.ReplyUserId) &&
|
||||||
note.Mentions.IsDisjoint(mentionsHidden) &&
|
note.Mentions.IsDisjoint(mentionsHidden) &&
|
||||||
(note.Renote == null || !hidden.Contains(note.Renote.RenoteUserId)) &&
|
(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) &&
|
return note => !hidden.Contains(note.UserId) &&
|
||||||
|
|
Loading…
Add table
Reference in a new issue