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

Merge branch 'release-v0.6.2' of github.com:matrix-org/synapse into develop

parents 8ce100c7 20db147e
No related branches found
No related tags found
No related merge requests found
......@@ -860,9 +860,14 @@ class FederationHandler(BaseHandler):
# Only do auth resolution if we have something new to say.
# We can't rove an auth failure.
do_resolution = False
provable = [
RejectedReason.NOT_ANCESTOR, RejectedReason.NOT_ANCESTOR,
]
for e_id in different_auth:
if e_id in have_events:
if have_events[e_id] != RejectedReason.AUTH_ERROR:
if have_events[e_id] in provable:
do_resolution = True
break
......
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