You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I set the timezone in UTC originally, but the front-end is generating timezones in America/Chicago. what's ultimately happening is that the timezone info is getting stripped out of the Dates as they are passed around, so the server misinterprets the timestamp as being in UTC time (which is 5/6 hours ahead) when it should be Chicago time
one way to fix this is to have EVERYTHING use only UTC, and include a timezone property as part of the CAPNotes. then, only when creating a formatting string, do you convert to timezones.
The text was updated successfully, but these errors were encountered:
I set the timezone in UTC originally, but the front-end is generating timezones in America/Chicago. what's ultimately happening is that the timezone info is getting stripped out of the Dates as they are passed around, so the server misinterprets the timestamp as being in UTC time (which is 5/6 hours ahead) when it should be Chicago time
one way to fix this is to have EVERYTHING use only UTC, and include a timezone property as part of the CAPNotes. then, only when creating a formatting string, do you convert to timezones.
The text was updated successfully, but these errors were encountered: