From f1b7218c60a49f96f420f2cafa05fd55d29b7768 Mon Sep 17 00:00:00 2001 From: Laura Hausmann Date: Fri, 27 Sep 2024 19:52:41 +0200 Subject: [PATCH] [backend/api-shared] Fix typo --- Iceshrimp.Backend/Core/Extensions/QueryableExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Iceshrimp.Backend/Core/Extensions/QueryableExtensions.cs b/Iceshrimp.Backend/Core/Extensions/QueryableExtensions.cs index 6989f332..56e1dde3 100644 --- a/Iceshrimp.Backend/Core/Extensions/QueryableExtensions.cs +++ b/Iceshrimp.Backend/Core/Extensions/QueryableExtensions.cs @@ -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) &&