Skip to content

Commit

Permalink
fix: don't unwrap in bin
Browse files Browse the repository at this point in the history
Signed-off-by: simonsan <[email protected]>
  • Loading branch information
simonsan committed Jan 23, 2024
1 parent de3ca63 commit a1c13cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/rustic-server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ impl RusticServer {
// rustic_server_configuration()?;
// }
Commands::Serve(opts) => {
serve(opts).await.unwrap();
serve(opts).await?;
}
}
Ok(())
Expand Down

0 comments on commit a1c13cf

Please sign in to comment.