Skip to content

Commit

Permalink
Fixed the error handling in the take screenshot
Browse files Browse the repository at this point in the history
  • Loading branch information
itsparser committed Mar 16, 2024
1 parent 05c7be4 commit f5e514e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/services/engine/src/controller/action.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ impl<'ccl> ActionController<'ccl> {
let _result = self
.storage_cli
.create("orca", format!("session/{session_id}/{id}.png").as_str(), content.as_slice())
.await;
.await?;

Check warning

Code scanning / clippy

this let-binding has unit value Warning

this let-binding has unit value
Ok(())
}

Expand Down

0 comments on commit f5e514e

Please sign in to comment.