Fix clippy linting warnings

This commit is contained in:
Tobie Morgan Hitchcock 2022-12-31 17:05:39 +00:00
parent f3f37d9372
commit 48a8d7b6eb

View file

@ -505,7 +505,7 @@ async fn router(
let request = client
.post(path)
.headers(headers.clone())
.auth(&auth)
.auth(auth)
.header(CONTENT_TYPE, "application/octet-stream");
let value = import(request, file).await?;
Ok(DbResponse::Other(value))