0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-11-05 22:28:54 +01:00

Merge pull request #2357 from matrix-org/erikj/push

Don't compute push actions for backfilled events
This commit is contained in:
Erik Johnston 2017-07-11 10:53:22 +01:00 committed by GitHub
commit e2cb760dcc

View file

@ -1413,7 +1413,7 @@ class FederationHandler(BaseHandler):
auth_events=auth_events, 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( yield self.action_generator.handle_push_actions_for_event(
event, context event, context
) )