Fix: Correct year result calculation

This commit is contained in:
Thomas Klaehn 2023-03-05 09:06:14 +01:00
parent 2f5fa70a30
commit 460075f4b6
1 changed files with 1 additions and 2 deletions

View File

@ -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
}