summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2017-07-11 10:02:21 +0100
committerErik Johnston <erik@matrix.org>2017-07-11 10:02:21 +0100
commit9a6fd3ef29cc66d785436acce96b15ca83aa99a8 (patch)
treec74d543a22df7fff2712582faaeeddf667d5c528
parentInclude registration and as stores in frontend proxy (diff)
downloadsynapse-9a6fd3ef29cc66d785436acce96b15ca83aa99a8.tar.xz
Don't compute push actions for backfilled events
-rw-r--r--synapse/handlers/federation.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/federation.py b/synapse/handlers/federation.py
index 694b820d85..b790a7c2ef 100644
--- a/synapse/handlers/federation.py
+++ b/synapse/handlers/federation.py
@@ -1413,7 +1413,7 @@ class FederationHandler(BaseHandler):
             auth_events=auth_events,
         )
 
-        if not event.internal_metadata.is_outlier():
+        if not event.internal_metadata.is_outlier() and not backfilled:
             yield self.action_generator.handle_push_actions_for_event(
                 event, context
             )