mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
mod_time: Return sub-second precision timestamps
Because why not? Who even has this module enabled?
This commit is contained in:
parent
50304f83fd
commit
16331082a5
1 changed files with 2 additions and 1 deletions
|
@ -8,6 +8,7 @@
|
|||
|
||||
local st = require "util.stanza";
|
||||
local datetime = require "util.datetime".datetime;
|
||||
local now = require "util.time".now;
|
||||
local legacy = require "util.datetime".legacy;
|
||||
|
||||
-- XEP-0202: Entity Time
|
||||
|
@ -18,7 +19,7 @@ local function time_handler(event)
|
|||
local origin, stanza = event.origin, event.stanza;
|
||||
origin.send(st.reply(stanza):tag("time", {xmlns="urn:xmpp:time"})
|
||||
:tag("tzo"):text("+00:00"):up() -- TODO get the timezone in a platform independent fashion
|
||||
:tag("utc"):text(datetime()));
|
||||
:tag("utc"):text(datetime(now())));
|
||||
return true;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue