1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-06-30 19:38:18 +02:00

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

Took 8 minutes
This commit is contained in:
Marcel 2020-04-09 21:19:27 +02:00
parent 8bcbc983c3
commit 57264f72e9

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,
}));
}