Skip to content

Commit

Permalink
Merge pull request #14 from unbekanntes-pferd/bugfix/0.6.1
Browse files Browse the repository at this point in the history
fix setting file key (wrong file id)
  • Loading branch information
unbekanntes-pferd authored Oct 18, 2023
2 parents 9298d5c + 2af2cef commit bf32f6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dco3"
version = "0.6.0"
version = "0.6.1"
edition = "2021"
authors = ["Octavio Simone"]
repository = "https://github.com/unbekanntes-pferd/dco3"
Expand Down
2 changes: 1 addition & 1 deletion src/nodes/upload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ impl<R: AsyncRead + Sync + Send + Unpin + 'static> UploadInternal<R> for Dracoon
public_key,
)?;
let set_key_req =
UserFileKeySetRequest::new(file_id, user_id, file_key);
UserFileKeySetRequest::new(user_id, file_id, file_key);
Ok(set_key_req)
})
.collect::<Vec<_>>();
Expand Down

0 comments on commit bf32f6d

Please sign in to comment.