Fix FederationHandler to event.origin
This commit is contained in:
parent
068b348e7e
commit
722c19d033
|
@ -146,7 +146,7 @@ class FederationHandler(BaseHandler):
|
||||||
# Huh, let's try and get the current state
|
# Huh, let's try and get the current state
|
||||||
try:
|
try:
|
||||||
yield self.replication_layer.get_state_for_context(
|
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(
|
hosts = yield self.store.get_joined_hosts_for_room(
|
||||||
|
|
Loading…
Reference in New Issue