mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.datetime: Fix timestamp parsing pattern.
This commit is contained in:
parent
d4e080f745
commit
f79f756a44
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ end
|
|||
function parse(s)
|
||||
if s then
|
||||
local year, month, day, hour, min, sec, tzd;
|
||||
year, month, day, hour, min, sec, tzd = s:match("^(%d%d%d%d)-?(%d%d)-?(%d%d)T(%d%d):(%d%d):(%d%d)%.?%d*([Z+%-].*)$");
|
||||
year, month, day, hour, min, sec, tzd = s:match("^(%d%d%d%d)%-?(%d%d)%-?(%d%d)T(%d%d):(%d%d):(%d%d)%.?%d*([Z+%-]?.*)$");
|
||||
if year then
|
||||
local time_offset = os_difftime(os_time(os_date("*t")), os_time(os_date("!*t"))); -- to deal with local timezone
|
||||
local tzd_offset = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue