Skip to content
Snippets Groups Projects
Unverified Commit fe678a09 authored by Brendan Abolivier's avatar Brendan Abolivier Committed by GitHub
Browse files

Merge pull request #7035 from matrix-org/babolivier/hide_dummy_events

Hide extremities dummy events from clients
parents 13892776 83b6c69d
No related branches found
No related tags found
No related merge requests found
Fix a bug causing `org.matrix.dummy_event` to be included in responses from `/sync`.
......@@ -119,6 +119,9 @@ def filter_events_for_client(
the original event if they can see it as normal.
"""
if event.type == "org.matrix.dummy_event":
return None
if not event.is_state() and event.sender in ignore_list:
return None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment