Run to UTC

This commit is contained in:
mr
2026-03-19 08:22:52 +01:00
parent 6c0b07b49d
commit a7ffede3e2
6 changed files with 58 additions and 163 deletions

View File

@@ -47,7 +47,7 @@ func (v *VectorService) ListenVector(ctx context.Context, b *booking.Booking, in
if b.ExpectedEndDate == nil {
return true
}
return time.Now().Before(*b.ExpectedEndDate)
return time.Now().UTC().Before(*b.ExpectedEndDate)
}
ticker := time.NewTicker(interval)