aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_lastactivity.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2020-04-23 13:53:18 +0100
committerMatthew Wild <mwild1@gmail.com>2020-04-23 13:53:18 +0100
commit6ccf66938b42edbb92fd824c0cf44c1b2cf735d6 (patch)
tree5049caa623fcdfd2296f00009ea8ef73fc02c28b /plugins/mod_lastactivity.lua
parentab312cfc01bb6ea001fb039ffc7bb48e6a3396b0 (diff)
parent7c3e03b3bbb8494882738f83459266579df97c72 (diff)
downloadprosody-6ccf66938b42edbb92fd824c0cf44c1b2cf735d6.tar.gz
prosody-6ccf66938b42edbb92fd824c0cf44c1b2cf735d6.zip
Merge with upstream trunk
Diffstat (limited to 'plugins/mod_lastactivity.lua')
-rw-r--r--plugins/mod_lastactivity.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_lastactivity.lua b/plugins/mod_lastactivity.lua
index 575e66be..91d11bd2 100644
--- a/plugins/mod_lastactivity.lua
+++ b/plugins/mod_lastactivity.lua
@@ -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));