summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorTulir Asokan <tulir@maunium.net>2023-06-14 17:42:33 +0300
committerGitHub <noreply@github.com>2023-06-14 15:42:33 +0100
commit1404f68a03e684434dea6b2a9a5c2739c719549d (patch)
treec395318c97ac0bdacdafaaba74f40702867ed363 /synapse
parentMerge branch 'release-v1.86' into develop (diff)
downloadsynapse-1404f68a03e684434dea6b2a9a5c2739c719549d.tar.xz
Fix joining rooms through aliases where the alias server isn't a real homeserver (#15776)
Diffstat (limited to 'synapse')
-rw-r--r--synapse/handlers/room_member.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/room_member.py b/synapse/handlers/room_member.py
index af0ca5c26d..55df34bd06 100644
--- a/synapse/handlers/room_member.py
+++ b/synapse/handlers/room_member.py
@@ -1498,7 +1498,7 @@ class RoomMemberHandler(metaclass=abc.ABCMeta):
         # put the server which owns the alias at the front of the server list.
         if room_alias.domain in servers:
             servers.remove(room_alias.domain)
-        servers.insert(0, room_alias.domain)
+            servers.insert(0, room_alias.domain)
 
         return RoomID.from_string(room_id), servers