Skip to content
Snippets Groups Projects
Commit 34a5fbe2 authored by Paul "LeoNerd" Evans's avatar Paul "LeoNerd" Evans
Browse files

Have /join/:room_id return the room ID in response anyway, for consistency of clients (SYN-234)

parent cf7e7238
No related branches found
No related tags found
No related merge requests found
...@@ -246,7 +246,7 @@ class JoinRoomAliasServlet(RestServlet): ...@@ -246,7 +246,7 @@ class JoinRoomAliasServlet(RestServlet):
} }
) )
defer.returnValue((200, {})) defer.returnValue((200, {"room_id": identifier.to_string()}))
@defer.inlineCallbacks @defer.inlineCallbacks
def on_PUT(self, request, room_identifier, txn_id): def on_PUT(self, request, room_identifier, txn_id):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment