[backend/masto-client] Fix user channel (ISH-260)
This commit is contained in:
parent
47d4100ec9
commit
f611e01bda
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ public class UserChannel(WebSocketConnection connection, bool notificationsOnly)
|
||||||
|
|
||||||
private NoteWithVisibilities? IsApplicable(Note note)
|
private NoteWithVisibilities? IsApplicable(Note note)
|
||||||
{
|
{
|
||||||
if (IsApplicableBool(note)) return null;
|
if (!IsApplicableBool(note)) return null;
|
||||||
var res = EnforceRenoteReplyVisibility(note);
|
var res = EnforceRenoteReplyVisibility(note);
|
||||||
return res is not { Note.IsPureRenote: true, Renote: null } ? null : res;
|
return res is not { Note.IsPureRenote: true, Renote: null } ? null : res;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue