From 9e92b48eee1bb505272e20edfb8f3bec733db471 Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Tue, 21 Oct 2025 21:25:27 +0200 Subject: fix FIT files not having the date set --- fietsboek/convert.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fietsboek/convert.py b/fietsboek/convert.py index df08833..5115dd7 100644 --- a/fietsboek/convert.py +++ b/fietsboek/convert.py @@ -54,6 +54,7 @@ def from_fit(data: bytes) -> Track: path = geo.Path(points) track = Track() track.set_path(path) + track.date = start_time return track -- cgit v1.2.3