Skip to content

Commit

Permalink
chore: fix clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
connec committed Dec 3, 2022
1 parent a64ec45 commit 1fa095f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/s3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ impl Client {
.body(body.into())
.bucket(request.bucket)
.content_length(meta.len().try_into().expect("file is insanely large"))
.content_md5(base64::encode(&content_md5.0))
.content_md5(base64::encode(content_md5.0))
.key(&key)
.send()
.await
Expand Down

0 comments on commit 1fa095f

Please sign in to comment.