diff options
author | Erik Johnston <erik@matrix.org> | 2020-12-18 09:49:18 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-18 09:49:18 +0000 |
commit | 70586aa63eaf129505324976fb092cb3ad327590 (patch) | |
tree | b1a14803d58dcd5caa72814766129410a9310243 /synapse/visibility.py | |
parent | Clean up tox.ini (#8963) (diff) | |
download | synapse-70586aa63eaf129505324976fb092cb3ad327590.tar.xz |
Try and drop stale extremities. (#8929)
If we see stale extremities while persisting events, and notice that they don't change the result of state resolution, we drop them.
Diffstat (limited to 'synapse/visibility.py')
-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 f2836ba9f0..ec50e7e977 100644 --- a/synapse/visibility.py +++ b/synapse/visibility.py @@ -125,7 +125,7 @@ async def filter_events_for_client( # see events in the room at that point in the DAG, and that shouldn't be decided # on those checks. if filter_send_to_client: - if event.type == "org.matrix.dummy_event": + if event.type == EventTypes.Dummy: return None if not event.is_state() and event.sender in ignore_list: |