diff options
author | Erik Johnston <erik@matrix.org> | 2016-08-05 10:48:56 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-08-05 10:48:56 +0100 |
commit | 2d4de61fb7b6276255fac3c07ef4c242f5a93c71 (patch) | |
tree | 0f2ace6f5589102c4d94aa20d82d4e90622508a1 /synapse/federation | |
parent | Check if we already have the events returned by /state/ (diff) | |
download | synapse-2d4de61fb7b6276255fac3c07ef4c242f5a93c71.tar.xz |
Fix typo
Diffstat (limited to 'synapse/federation')
-rw-r--r-- | synapse/federation/federation_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/federation/federation_client.py b/synapse/federation/federation_client.py index b751d26de1..65778fd4ee 100644 --- a/synapse/federation/federation_client.py +++ b/synapse/federation/federation_client.py @@ -376,7 +376,7 @@ class FederationClient(FederationBase): signed_auth = yield self._check_sigs_and_hash_and_fetch( destination, - [p for p in pdus if p.event_id not in auth_chain], + [p for p in auth_chain if p.event_id not in seen_events], outlier=True ) signed_auth.extend( |