Ethan Setnik

Results 148 comments of Ethan Setnik

I received another instance of the issue. The test code is: ```tsx const startDate = item.scheduledDateLocal.toLocal(); const endDate = startDate.plus({ milliseconds: item.duration }).toLocal(); const systemZone = SystemZone.instance.name; try { const...

Ah glad I'm not going crazy 😝. In case it is helpful browser statistics are indicating: - Windows >= 10 - 100% of errors - Edge 1.31.0.0 - 61% |...

And another user in [America/Denver] ``` { duration: 1800000, endDate: 2024-12-19T09:30:00.000-07:00[America/Denver], scheduledDate: 2024-12-19T09:00:00.000-08:00[America/Denver], startDate: 2024-12-19T09:00:00.000-08:00[America/Denver], systemZone: America/Denver } ```

``` { duration: 1800000, endDate: 2025-01-22T11:30:00.000-05:00[America/New_York], scheduledDate: 2025-01-22T11:00:00.000-06:00[America/New_York], startDate: 2025-01-22T11:00:00.000-06:00[America/New_York], systemZone: America/New_York } ```

`item.scheduledDateLocal` is created via: ``` // item.scheduledAt is a number in milliseconds coming from our API const scheduledDateLocal = DateTime.fromMillis(item.scheduledAt); ```

Here's an example showing the actual `scheduledAt` value that was supplied, e.g. ``` const scheduledAt = 1742493600000; const scheduledDateLocal = DateTime.fromMillis(item.scheduledAt); const startDate = scheduledDateLocal.toLocal(); const endDate = startDate.plus({ milliseconds:...

Are you referring to the fix in https://github.com/moment/luxon/commit/20139a300ce54b280be672ada53cc9f47c8c2029?

Hi @diesieben07 I just observed the same issue in v3.7.1 ``` { arguments: [ scheduled interval failed, { duration: 1800000, endDate: 2025-08-14T12:30:00.000-04:00[America/New_York], scheduledAt: 1755190800000, scheduledDate: 2025-08-14T12:00:00.000-05:00[America/New_York], startDate: 2025-08-14T12:00:00.000-05:00[America/New_York], systemZone: America/New_York...

@diesieben07 I am still seeing this issue. Are you able to investigate it further?

No worries. I just wanted to report it since we've seen it a few times in the latest version. I don't have time to reproduce it at the moment but...