mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_lastactivity: Encode seconds as decimal, not float
In Lua 5.3 difftime() takes integers as argument but returns a float, and then tostring() serializes it with a decimal point. This violates XEP-0012. Like #1536
This commit is contained in:
parent
bc0e389d47
commit
d649e78d6d
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ module:hook("iq-get/bare/jabber:iq:last:query", function(event)
|
|||
if not stanza.attr.to or is_contact_subscribed(username, module.host, jid_bare(stanza.attr.from)) then
|
||||
local seconds, text = "0", "";
|
||||
if map[username] then
|
||||
seconds = tostring(os.difftime(os.time(), map[username].t));
|
||||
seconds = string.format("%d", os.difftime(os.time(), map[username].t));
|
||||
text = map[username].s;
|
||||
end
|
||||
origin.send(st.reply(stanza):tag('query', {xmlns='jabber:iq:last', seconds=seconds}):text(text));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue