# HG changeset patch # User Emmanuel Gil Peyrot # Date 1535135717 -7200 # Node ID affd84be3fc37a2c9a04f850a9105de76991ad8d # Parent 0ba963e82ac7682a58d342e776381d8d7e2f7d0d mod_uptime: Simplify iq handling by hooking on iq-get/ instead of iq/. diff -r 0ba963e82ac7 -r affd84be3fc3 plugins/mod_uptime.lua --- a/plugins/mod_uptime.lua Fri Aug 24 20:35:03 2018 +0200 +++ b/plugins/mod_uptime.lua Fri Aug 24 20:35:17 2018 +0200 @@ -14,12 +14,10 @@ -- 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