mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Changed format for XEP-0090 to the legacy format
This commit is contained in:
parent
5eafb3d324
commit
c3404c96e2
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
|
||||
local st = require "util.stanza";
|
||||
local datetime = require "util.datetime".datetime;
|
||||
local legacy = require "util.datetime".legacy;
|
||||
|
||||
-- XEP-0202: Entity Time
|
||||
|
||||
|
@ -23,6 +24,6 @@ add_iq_handler({"c2s", "s2sin"}, "jabber:iq:time",
|
|||
function(session, stanza)
|
||||
if stanza.attr.type == "get" then
|
||||
session.send(st.reply(stanza):tag("query", {xmlns="jabber:iq:time"})
|
||||
:tag("utc"):text(datetime()));
|
||||
:tag("utc"):text(legacy()));
|
||||
end
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue