mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.datetime: Fixes for more liberal timezone parsing - colon and minutes are both (independantly) optional (thanks Zash)
This commit is contained in:
parent
e058268eda
commit
85d3f7707e
1 changed files with 2 additions and 1 deletions
|
@ -41,8 +41,9 @@ function parse(s)
|
|||
local time_offset = os_difftime(os_time(os_date("*t")), os_time(os_date("!*t"))); -- to deal with local timezone
|
||||
local tzd_offset = 0;
|
||||
if tzd ~= "" and tzd ~= "Z" then
|
||||
local sign, h, m = tzd:match("([+%-])(%d%d):(%d%d)");
|
||||
local sign, h, m = tzd:match("([+%-])(%d%d):?(%d*)");
|
||||
if not sign then return; end
|
||||
if #m ~= 2 then m = "0"; end
|
||||
h, m = tonumber(h), tonumber(m);
|
||||
tzd_offset = h * 60 * 60 + m * 60;
|
||||
if sign == "-" then tzd_offset = -tzd_offset; end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue