From f611e01bda5ad247e2bc44d4c29beb3b653b8cb3 Mon Sep 17 00:00:00 2001 From: Laura Hausmann Date: Tue, 16 Apr 2024 17:01:48 +0200 Subject: [PATCH] [backend/masto-client] Fix user channel (ISH-260) --- .../Controllers/Mastodon/Streaming/Channels/UserChannel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Iceshrimp.Backend/Controllers/Mastodon/Streaming/Channels/UserChannel.cs b/Iceshrimp.Backend/Controllers/Mastodon/Streaming/Channels/UserChannel.cs index 6327ccd0..eb5427b4 100644 --- a/Iceshrimp.Backend/Controllers/Mastodon/Streaming/Channels/UserChannel.cs +++ b/Iceshrimp.Backend/Controllers/Mastodon/Streaming/Channels/UserChannel.cs @@ -56,7 +56,7 @@ public class UserChannel(WebSocketConnection connection, bool notificationsOnly) private NoteWithVisibilities? IsApplicable(Note note) { - if (IsApplicableBool(note)) return null; + if (!IsApplicableBool(note)) return null; var res = EnforceRenoteReplyVisibility(note); return res is not { Note.IsPureRenote: true, Renote: null } ? null : res; }