ergo-trips #801

Merged
philipp merged 16 commits from ergo-trips into staging 2024-11-25 12:31:52 +01:00
Showing only changes of commit 85b39d472c - Show all commits

View File

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