2 files changed, 4 insertions, 0 deletions
diff --git a/changelog.d/7035.bugfix b/changelog.d/7035.bugfix
new file mode 100644
index 0000000000..56292dc8ac
--- /dev/null
+++ b/changelog.d/7035.bugfix
@@ -0,0 +1 @@
+Fix a bug causing `org.matrix.dummy_event` to be included in responses from `/sync`.
diff --git a/synapse/visibility.py b/synapse/visibility.py
index e60d9756b7..a48a4f3dfe 100644
--- a/synapse/visibility.py
+++ b/synapse/visibility.py
@@ -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
|