Garmin: fix null timestamp for FitEvent

This commit is contained in:
Thomas Kuehne
2026-05-08 09:36:39 +00:00
parent 553bfa2ab7
commit ad1ac39c4d
@@ -309,6 +309,9 @@ public class FitImporter {
if (event.getEvent() == null) { if (event.getEvent() == null) {
LOG.warn("Event in {} is null", event); LOG.warn("Event in {} is null", event);
continue; continue;
} else if (ts == null) {
LOG.warn("Timestamp for {} is null", event);
continue;
} }
LOG.trace("Event at {}: {}", ts, event); LOG.trace("Event at {}: {}", ts, event);