mod_uptime: Simplify iq handling by hooking on iq-get/ instead of iq/.

This commit is contained in:
Emmanuel Gil Peyrot 2018-08-24 20:35:17 +02:00
parent db4ad26aed
commit b7b67000ca

View file

@ -14,12 +14,10 @@ module:hook_global("server-started", function() start_time = prosody.start_time
-- XEP-0012: Last activity
module:add_feature("jabber:iq:last");
module:hook("iq/host/jabber:iq:last:query", function(event)
module:hook("iq-get/host/jabber:iq:last:query", function(event)
local origin, stanza = event.origin, event.stanza;
if stanza.attr.type == "get" then
origin.send(st.reply(stanza):tag("query", {xmlns = "jabber:iq:last", seconds = tostring(os.difftime(os.time(), start_time))}));
return true;
end
origin.send(st.reply(stanza):tag("query", {xmlns = "jabber:iq:last", seconds = tostring(os.difftime(os.time(), start_time))}));
return true;
end);
-- Ad-hoc command