mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-14 18:43:53 +01:00
Also don't filter out events sent by ignored users when checking state visibility
This commit is contained in:
parent
9c0775e86a
commit
2dce68c651
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ def filter_events_for_client(
|
|||
if event.type == "org.matrix.dummy_event" and filter_send_to_client:
|
||||
return None
|
||||
|
||||
if not event.is_state() and event.sender in ignore_list:
|
||||
if not event.is_state() and event.sender in ignore_list and filter_send_to_client:
|
||||
return None
|
||||
|
||||
# Until MSC2261 has landed we can't redact malicious alias events, so for
|
||||
|
|
Loading…
Reference in a new issue