Provide proper error message when create_room fails with invalid_service

This commit is contained in:
Badlop 2021-07-08 12:48:19 +02:00
parent 5beaf50c67
commit e22ed8081a
1 changed files with 2 additions and 0 deletions

View File

@ -700,6 +700,8 @@ create_room_with_opts(Name1, Host1, ServerHost1, CustomRoomOpts) ->
{error, _} ->
throw({error, "Unable to start room"})
end;
invalid_service ->
throw({error, "Invalid 'service'"});
_ ->
throw({error, "Room already exists"})
end