Skip to content

Commit

Permalink
Fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkharderdev committed Oct 20, 2023
1 parent f48c1d6 commit 52e008a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion object_store/src/aws/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ impl ObjectStore for AmazonS3 {
bytes: Bytes,
options: PutOptions,
) -> Result<()> {
if !options.tags.is_empty() {
if options.tags.is_empty() {
self.client
.put_request(location, Some(bytes), &(), None)
.await?;
Expand Down

0 comments on commit 52e008a

Please sign in to comment.