mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
And another typo.
This commit is contained in:
parent
6e5ac4a28f
commit
a0dfffb33c
@ -274,7 +274,7 @@ class FederationHandler(BaseHandler):
|
|||||||
if current_depth > max_depth:
|
if current_depth > max_depth:
|
||||||
logger.debug(
|
logger.debug(
|
||||||
"Not backfilling as we don't need to. %d < %d",
|
"Not backfilling as we don't need to. %d < %d",
|
||||||
current_depth, max_depth,
|
max_depth, current_depth,
|
||||||
)
|
)
|
||||||
return
|
return
|
||||||
|
|
||||||
@ -364,10 +364,10 @@ class FederationHandler(BaseHandler):
|
|||||||
event_ids = list(extremities.keys())
|
event_ids = list(extremities.keys())
|
||||||
|
|
||||||
states = yield defer.gatherResults([
|
states = yield defer.gatherResults([
|
||||||
self.state_handler.resolve_state_groups([e])[1]
|
self.state_handler.resolve_state_groups([e])
|
||||||
for e in event_ids
|
for e in event_ids
|
||||||
])
|
])
|
||||||
states = dict(zip(event_ids, states))
|
states = dict(zip(event_ids, [s[1] for s in states]))
|
||||||
|
|
||||||
for e_id, _ in sorted_extremeties_tuple:
|
for e_id, _ in sorted_extremeties_tuple:
|
||||||
likely_domains = get_domains_from_state(states[e_id])[0]
|
likely_domains = get_domains_from_state(states[e_id])[0]
|
||||||
|
Loading…
Reference in New Issue
Block a user