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

Remember to URL decode the room_id in room initialSync

parent db7e8b56
No related branches found
No related tags found
No related merge requests found
......@@ -364,7 +364,7 @@ class RoomInitialSyncRestServlet(RestServlet):
user = yield self.auth.get_user_by_req(request)
pagination_config = PaginationConfig.from_request(request)
content = yield self.handlers.message_handler.room_initial_sync(
room_id=room_id,
room_id=urllib.unquote(room_id),
user_id=user.to_string(),
pagin_config=pagination_config,
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment