mod_uptime: Encode uptime as decimal, fix #1536 (thanks Martin)

This commit is contained in:
Kim Alvefur 2020-04-22 21:46:56 +02:00
parent 701c5f4811
commit bc0e389d47

View file

@ -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);