Skip to content

Commit

Permalink
Update main.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
GuyL99 authored Nov 29, 2023
1 parent 3afef36 commit 13fdd8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ async fn main() -> anyhow::Result<ExitCode> {
};
merge_options(&mut config, &opt);
if !opt.no_telemetry {
telemetry::send(config.profile.clone(), config.verbosity.clone()).await?;
telemetry::send(config.profile.clone(), config.verbosity.clone()).await.unwrap_or_default();
}
let json_val = cherrybomb_engine::run(&mut config).await?;
match print_tables(json_val, &opt) {
Expand Down

0 comments on commit 13fdd8a

Please sign in to comment.