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
George: Time zone is wrong for me. I'm in Ecuador, and it logs time as yesterday :(
Dan: Same issue here - it logs time one day before.
Samuel: Also want to confirm on PST timezone it tracks to previous day, otherwise great addon!
When the timezone is west of UTC the offset is for ex. -08:00 and standard JS date function parses the given date as "yesterday 8 hours before midnight".
=> Switch to momentjs implementation which takes the given date as midnight of the given date in the users timezone. We then add 9 hours (as we don't have another start date in harvest) and transmit the correct date/time to jira. Jira is then hopefully configured in the same timezone ^^
The text was updated successfully, but these errors were encountered:
There is some issue with timezones reported in the comments of the chrome store: https://chrome.google.com/webstore/detail/harvest-%3E-jira-sync/imogkeoglmoaghpegcmghjicbdgbahio
When the timezone is west of UTC the offset is for ex. -08:00 and standard JS date function parses the given date as "yesterday 8 hours before midnight".
=> Switch to momentjs implementation which takes the given date as midnight of the given date in the users timezone. We then add 9 hours (as we don't have another start date in harvest) and transmit the correct date/time to jira. Jira is then hopefully configured in the same timezone ^^
The text was updated successfully, but these errors were encountered: