Skip to content
Snippets Groups Projects
Commit ea8c4094 authored by Erik Johnston's avatar Erik Johnston
Browse files

Also pull out rejected events

parent 7f41bcbe
No related branches found
No related tags found
No related merge requests found
...@@ -441,7 +441,7 @@ class FederationClient(FederationBase): ...@@ -441,7 +441,7 @@ class FederationClient(FederationBase):
events and the second is a list of event ids that we failed to fetch. events and the second is a list of event ids that we failed to fetch.
""" """
if return_local: if return_local:
seen_events = yield self.store.get_events(event_ids) seen_events = yield self.store.get_events(event_ids, allow_rejected=True)
signed_events = seen_events.values() signed_events = seen_events.values()
else: else:
seen_events = yield self.store.have_events(event_ids) seen_events = yield self.store.have_events(event_ids)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment