Fix/tweak display time output

This commit is contained in:
Stephen Seo 2021-09-16 14:48:03 +09:00
parent 7a7883d359
commit 1e461e96eb

View file

@ -418,7 +418,7 @@ fn seconds_to_time(seconds: f64) -> String {
} else {
result = String::new();
}
if new_seconds < 10.0 {
if new_seconds < 10.0 && seconds >= 0.0 {
result.push('0');
}
result.push_str(&new_seconds.to_string());