Skip to content

Commit

Permalink
fix: server bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
skifli authored Oct 3, 2024
1 parent 9a04409 commit 827d22c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bruty_server/src/server_threads.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ pub async fn results_progress_handler(
log::info!(
"Finished checking {} @{}/s",
state.current_id.iter().collect::<String>(),
262144 / start_times.remove(0).elapsed().as_secs()
262144.0 / start_times.remove(0).elapsed().as_secs_f64()
);
} else {
if cant_update_awaiting_results != awaiting_current_id_update {
Expand Down

0 comments on commit 827d22c

Please sign in to comment.