Skip to content

Commit

Permalink
Update crates/composer/src/api.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Matěj Laitl <[email protected]>
  • Loading branch information
goodhoko and strohel authored Apr 21, 2023
1 parent da701b8 commit a44c1ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/composer/src/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ impl Client {
}

pub fn send(&self, event: &Event) -> Result<()> {
let data = bincode::serialize(&event)?;
let data = bincode::serialize(event)?;
self.socket.send(&data)?;
Ok(())
}
Expand Down

0 comments on commit a44c1ec

Please sign in to comment.