mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +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
|
if sign == "-" then tzd_offset = -tzd_offset; end
|
||||||
end
|
end
|
||||||
sec = (sec + time_offset) - tzd_offset;
|
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
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue