Add detail to room alias name error message (#565)

main
Andrew Morgan 2018-08-03 07:56:48 -07:00 committed by Erik Johnston
parent 1165b49da7
commit 1176c1d574
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ func (r createRoomRequest) Validate() *util.JSONResponse {
if strings.ContainsAny(r.RoomAliasName, whitespace+":") {
return &util.JSONResponse{
Code: http.StatusBadRequest,
JSON: jsonerror.BadJSON("room_alias_name cannot contain whitespace"),
JSON: jsonerror.BadJSON("room_alias_name cannot contain whitespace or ':'"),
}
}
for _, userID := range r.Invite {