mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.datetime: Fix timestamp parsing when in DST (thanks xnyhps)
This commit is contained in:
parent
0257b8e30c
commit
4ff48cecfd
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ function parse(s)
|
|||
if sign == "-" then tzd_offset = -tzd_offset; end
|
||||
end
|
||||
sec = (sec + time_offset) - tzd_offset;
|
||||
return os_time({year=year, month=month, day=day, hour=hour, min=min, sec=sec});
|
||||
return os_time({year=year, month=month, day=day, hour=hour, min=min, sec=sec, isdst=false});
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue