fix: observer telemetry TS should have been ms not s

partial for #52
This commit is contained in:
Enot (ded) Skelly
2026-06-10 08:20:44 -07:00
parent ddd0c473fb
commit 2286dc7eaf
+1 -1
View File
@@ -181,7 +181,7 @@ func (s *Store) GetObserverTelemetry(ctx context.Context, observerID uuid.UUID,
points := make([]api.ObserverTelemetryPoint, 0, len(rows))
for _, v := range rows {
points = append(points, api.ObserverTelemetryPoint{
T: v.ReportedAt.Time.Unix(),
T: v.ReportedAt.Time.UnixMilli(),
BatteryMV: v.BatteryVoltageMv,
AirtimeTxPct: v.AirtimeTxPct,
AirtimeRxPct: v.AirtimeRxPct,