Compare commits

..

2 Commits

Author SHA1 Message Date
Thomas Klaehn
5663822e0c Merge branch 'main' into release 2023-03-05 09:08:14 +01:00
Thomas Klaehn
460075f4b6 Fix: Correct year result calculation 2023-03-05 09:06:14 +01:00

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
}