mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_uptime: Simplify iq handling by hooking on iq-get/ instead of iq/.
This commit is contained in:
parent
db4ad26aed
commit
b7b67000ca
1 changed files with 3 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue