The issue with the timing of the schedule report

Nobuyuki Ogahara 21 days ago

I configured the calendar using the UI.(The following is data retrieved via the API and decoded.)

BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Traccar//NONSGML Traccar//EN
BEGIN:VEVENT
UID:00000000-0000-0000-0000-000000000000
DTSTART;TZID=Asia/Tokyo:20260518T000000
DTEND;TZID=Asia/Tokyo:20260518T060000
RRULE:FREQ=DAILY
SUMMARY:Event
END:VEVENT
END:VCALENDAR

I have scheduled the summary report.
However, the link sent in the email was from an hour ago.

Scheduled report is ready:
https://XXX.XXXX.XX/reports/events?deviceId=10&from=2026-05-18T14%3A00%3A00Z&to=2026-05-18T20%3A00%3A00Z

The account’s time zone is set to Asia/Tokyo. (JST is +09:00)
The server’s time zone has not been specified.

Japan does not observe daylight saving time. It feels as though the time difference is being reflected.
Is there any way to apply the set time to the link?

Anton Tananaev 21 days ago
Nobuyuki Ogahara 21 days ago

Thank you.
I applied the above commit to V6.13.3 and checked, but there was no change.
The following is data retrieved via the API and decoded.

BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Traccar//NONSGML Traccar//EN
BEGIN:VEVENT
UID:00000000-0000-0000-0000-000000000000
DTSTART;TZID=Asia/Tokyo:20260519T190000
DTEND;TZID=Asia/Tokyo:20260519T200000
RRULE:FREQ=DAILY
SUMMARY:Event
END:VEVENT
END:VCALENDAR

I have scheduled the summary report.

Scheduled report is ready:
https:///XXX.XXXX.XX/reports/summary?deviceId=11&daily=false&from=2026-05-19T09%3A00%3A00Z&to=2026-05-19T10%3A00%3A00Z

The schedule is as follows.
19:00 JST ~ 20:00 JST(10:00 UTC ~ 11:00 UTC)

However, the link in the email states 09:00 UTC to 10:00 UTC.
The email was actually sent at 19:11 JST (10:11 UTC).

The time is currently set to one hour before the scheduled time.
Have I got my settings wrong?

Anton Tananaev 21 days ago

Are you sure you applied the fix?

There's another small fix needed for actual report trigger:

https://github.com/traccar/traccar/commit/1df6f8f534e2f67cbfd76c415c1c9c769fe9dd2f

Nobuyuki Ogahara 20 days ago

Thanks, Anton!
The time is no longer out of sync.
Thank you so much for your prompt response!