fix MR 153 requests; cargo fmt
This commit is contained in:
parent
fa2da9e048
commit
8fcf8e20b8
1 changed files with 4 additions and 2 deletions
|
@ -2980,8 +2980,10 @@ pub fn send_event_to_device_route(
|
|||
pub fn get_media_config_route(
|
||||
db: State<'_, Database>,
|
||||
) -> ConduitResult<get_media_config::Response> {
|
||||
let upload_size = db.globals.max_request_size().into();
|
||||
Ok(get_media_config::Response { upload_size }.into())
|
||||
Ok(get_media_config::Response {
|
||||
upload_size: db.globals.max_request_size().into(),
|
||||
}
|
||||
.into())
|
||||
}
|
||||
|
||||
#[post("/_matrix/media/r0/upload", data = "<body>")]
|
||||
|
|
Loading…
Reference in a new issue