diff options
author | Nico Weber <thakis@chromium.org> | 2020-08-30 09:39:16 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-30 16:56:47 +0200 |
commit | 9ad5a261f7fe03aac6d2f6261eb74026145781ea (patch) | |
tree | ff9ba96794f470e07181ec76f78494e2ce5954bd /AK/Result.h | |
parent | 57dd3b66c5db7fc57d4e1c55f1515901e02bf419 (diff) | |
download | serenity-9ad5a261f7fe03aac6d2f6261eb74026145781ea.zip |
LibCore: Let DateTime::create()/set_time() take summer time into account
DateTime::create() takes a date/time in local time, but it set
tm_isdst to 0, which meant it was in local winter time always.
Set tm_isdst to -1 so that times during summer time are treated
in summer time, and times in winter time are treated as winter
time (when appropriate). When the time is adjusted backward by
one hour, the same time can be in winter time or summer time,
so this isn't 100% reliable, but for most of the year it should
work fine.
Since LibJS uses DateTime, this means that the Date tuple
ctor (which creates a timestamp from year/month/day/hours/etc
in local time) and getTime() should now have consistent (and
correct) output, which should fix #3327.
In Serenity itself, dst handling (and timezones) are unimplemented
and this doens't have any effect yet, but in Lagom this has an effect.
Diffstat (limited to 'AK/Result.h')
0 files changed, 0 insertions, 0 deletions