mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_uptime: Encode uptime as decimal, fix #1536 (thanks Martin)
This commit is contained in:
parent
701c5f4811
commit
bc0e389d47
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ module:add_feature("jabber:iq:last");
|
|||
|
||||
module:hook("iq-get/host/jabber:iq:last:query", function(event)
|
||||
local origin, stanza = event.origin, event.stanza;
|
||||
origin.send(st.reply(stanza):tag("query", {xmlns = "jabber:iq:last", seconds = tostring(os.difftime(os.time(), start_time))}));
|
||||
origin.send(st.reply(stanza):tag("query", {xmlns = "jabber:iq:last", seconds = tostring(("%d"):format(os.difftime(os.time(), start_time)))}));
|
||||
return true;
|
||||
end);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue