Remove hack to support rejoining rooms

This commit is contained in:
Erik Johnston 2018-11-09 14:58:09 +00:00
parent 30dd27afff
commit dc59ad5334

View File

@ -552,38 +552,6 @@ class FederationHandler(BaseHandler):
room_id, event_id, event,
)
# FIXME (erikj): Awful hack to make the case where we are not currently
# in the room work
# If state and auth_chain are None, then we don't need to do this check
# as we already know we have enough state in the DB to handle this
# event.
if state and auth_chain and not event.internal_metadata.is_outlier():
is_in_room = yield self.auth.check_host_in_room(
room_id,
self.server_name
)
else:
is_in_room = True
if not is_in_room:
logger.info(
"[%s %s] Got event for room we're not in",
room_id, event_id,
)
try:
yield self._persist_auth_tree(
origin, auth_chain, state, event
)
except AuthError as e:
raise FederationError(
"ERROR",
e.code,
e.msg,
affected=event_id,
)
else:
event_ids = set()
if state:
event_ids |= {e.event_id for e in state}