diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2020-03-11 17:04:18 +0000 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2020-03-11 17:53:22 +0000 |
commit | 2dce68c65110d4fe41efcc7150c9c6300ac71d2c (patch) | |
tree | df1188b0dce0133526578d51be6805f71493e401 /synapse | |
parent | Fix condition (diff) | |
download | synapse-2dce68c65110d4fe41efcc7150c9c6300ac71d2c.tar.xz |
Also don't filter out events sent by ignored users when checking state visibility
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/visibility.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/visibility.py b/synapse/visibility.py index d0b2241e48..82a2132427 100644 --- a/synapse/visibility.py +++ b/synapse/visibility.py @@ -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 |