diff --git a/Iceshrimp.Backend/Core/Database/Tables/Note.cs b/Iceshrimp.Backend/Core/Database/Tables/Note.cs index c893f008..f7f7b65e 100644 --- a/Iceshrimp.Backend/Core/Database/Tables/Note.cs +++ b/Iceshrimp.Backend/Core/Database/Tables/Note.cs @@ -296,7 +296,7 @@ public class Note : IEntity [Projectable] [SuppressMessage("ReSharper", "MergeIntoPattern", Justification = "Projectable chain must not contain patterns")] public bool IsVisibleFor(User? user) => - VisibilityIsPublicOrHome && (!LocalOnly || (user != null && user.Host == null)) || + (VisibilityIsPublicOrHome && (!LocalOnly || (user != null && user.Host == null))) || (user != null && CheckComplexVisibility(user)); [Projectable]