Timezone differences in Symphony

When daylight saving settings are changed, users might report differences of the time displayed on their machine and the time displayed in Symphony. Usually this is caused by incorrect details in the Windows settings. 

Users can refer to the Date & Time settings to confirm the details Windows is using:

Inside Symphony, users can also check the time zone and UTC to confirm the time zone is correct by following these steps:

  1. Open Developer Tools (press ctrl + shift + i or access the hamburger menu in SDA and go to Help > Troubleshooting > Toggle Developer Tools).
  2. Navigate to Console and enter the following command to confirm the time zone is correct:
Intl.DateTimeFormat().resolvedOptions().timeZone;
  1. Additionally, run the following command to confirm the offset, as sometimes the offset might be the difference introduced by daylight saving:
console.log(d = new Date().getTimezoneOffset());

For example UTC+9 in Japan is 9*60 minutes, therefore 540 minutes advance of UTC, hence local time is - 540 minutes of UTC and the value is 540: