forked from MirrorHub/synapse
Fix FederationHandler to event.origin
This commit is contained in:
parent
068b348e7e
commit
722c19d033
1 changed files with 1 additions and 1 deletions
|
@ -146,7 +146,7 @@ class FederationHandler(BaseHandler):
|
|||
# Huh, let's try and get the current state
|
||||
try:
|
||||
yield self.replication_layer.get_state_for_context(
|
||||
origin, event.room_id
|
||||
event.origin, event.room_id
|
||||
)
|
||||
|
||||
hosts = yield self.store.get_joined_hosts_for_room(
|
||||
|
|
Loading…
Reference in a new issue