fix: fetch 3 years of garmin history - all Data for initial import

This commit is contained in:
2026-03-18 13:59:22 +01:00
parent cd6fbcc01e
commit 6a16463f9b
+1 -1
View File
@@ -19,7 +19,7 @@ data:
client.login()
today = date.today()
start = today - timedelta(days=7)
start = today - timedelta(days=365 * 3)
activities = client.get_activities_by_date(
start.isoformat(), today.isoformat()