diff options
author | Richard van der Hoff <richard@matrix.org> | 2016-03-03 10:28:58 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2016-03-03 10:28:58 +0000 |
commit | 74cd80e53026d9f603e9e4f9a41cef54de239e16 (patch) | |
tree | 52a5dfaaa38068c95bc85f2859df4d5072155b66 /synapse/handlers/room.py | |
parent | Move arg default to the start of the function (diff) | |
download | synapse-74cd80e53026d9f603e9e4f9a41cef54de239e16.tar.xz |
Fix typo
Diffstat (limited to 'synapse/handlers/room.py')
-rw-r--r-- | synapse/handlers/room.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/room.py b/synapse/handlers/room.py index 9ef3219e39..ad7c83f477 100644 --- a/synapse/handlers/room.py +++ b/synapse/handlers/room.py @@ -539,7 +539,7 @@ class RoomMemberHandler(BaseHandler): pass else: # send the rejection to the inviter's HS. - remote_room_hosts = remote_room_hosts + [inviter.doman] + remote_room_hosts = remote_room_hosts + [inviter.domain] action = "remote_reject" federation_handler = self.hs.get_handlers().federation_handler |