Fix: Correct year result calculation
This commit is contained in:
parent
2f5fa70a30
commit
460075f4b6
@ -217,8 +217,7 @@ func api_builder() {
|
||||
year_result.Unit = DISTANCE_UNIT
|
||||
if distances[i].StartTime.Year() == time.Now().Year() {
|
||||
elapsed_days := time.Now().YearDay()
|
||||
relation := float64(elapsed_days) * 100 / 365
|
||||
year_result.Value = roundFloat(year_distance.Value*relation, 2)
|
||||
year_result.Value = roundFloat(year_distance.Value*365/float64(elapsed_days), 2)
|
||||
} else {
|
||||
year_result = year_distance
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user