Fix avatar_url error message if not starting with mxc://

Took 8 minutes
next
Marcel 2020-04-09 21:19:27 +02:00
parent 8bcbc983c3
commit 57264f72e9
1 changed files with 1 additions and 1 deletions

View File

@ -365,7 +365,7 @@ fn set_avatar_url_route(
debug!("Request contains an invalid avatar_url.");
return MatrixResult(Err(Error {
kind: ErrorKind::InvalidParam,
message: "Missing avatar_url".to_owned(),
message: "avatar_url has to start with mxc://.".to_owned(),
status_code: http::StatusCode::BAD_REQUEST,
}));
}