Web interface: Allow joining rooms with white-spaces in the nickname
This commit is contained in:
parent
fbfb07e8ba
commit
cd005935e2
1 changed files with 1 additions and 0 deletions
|
@ -313,6 +313,7 @@ void APIServer::serve_instances_join_room(Server *server, Server::session *sessi
|
|||
}
|
||||
|
||||
std::string name = get_http_var(hm, "name");
|
||||
boost::replace_all(name, " ", "_");
|
||||
std::string legacy_room = get_http_var(hm, "legacy_room");
|
||||
std::string legacy_server = get_http_var(hm, "legacy_server");
|
||||
std::string frontend_room = get_http_var(hm, "frontend_room");
|
||||
|
|
Loading…
Add table
Reference in a new issue