Merge pull request 'allow for smaller m' (#799) from trim-ergo into staging
All checks were successful
CI/CD Pipeline / test (push) Successful in 10m25s
CI/CD Pipeline / deploy-staging (push) Successful in 4m53s
CI/CD Pipeline / deploy-main (push) Has been skipped

Reviewed-on: #799
This commit is contained in:
philipp 2024-11-11 23:12:23 +01:00
commit ec1c717341

View File

@ -281,12 +281,11 @@ async fn new_dozen(
if let Err(e) = data.proof.move_copy_to(file_path).await { if let Err(e) = data.proof.move_copy_to(file_path).await {
eprintln!("Failed to persist file: {:?}", e); eprintln!("Failed to persist file: {:?}", e);
} }
let result = data.result.trim(); let result = data.result.trim_start_matches(|c| c == '0' || c == ' ');
let result = if result.len() == 4 { let result = if result.contains(":") || result.contains(".") {
result.to_string()
}else{
let result = result.trim_start_matches(|c| c == '0' || c == ' ');
format_time(result) format_time(result)
}else{
result.to_string()
}; };
sqlx::query!( sqlx::query!(