diff options
author | daurnimator <quae@daurnimator.com> | 2014-03-19 16:28:11 -0400 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2014-03-19 16:28:11 -0400 |
commit | c6d4ea2e3b5db640310d5cb7b5d1b8b27fc7c831 (patch) | |
tree | 769e0a801de4984fbf525cc9f19ef7117ef407a1 /plugins | |
parent | 3b36ae6f437d90e504e3de4d7d2996f9197a805a (diff) | |
download | prosody-c6d4ea2e3b5db640310d5cb7b5d1b8b27fc7c831.tar.gz prosody-c6d4ea2e3b5db640310d5cb7b5d1b8b27fc7c831.zip |
plugins/muc/muc.lib: Remove `payload` argument from `handle_mediated_*`; extract it from inside.
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/muc/muc.lib.lua | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index de251716..be4d31c3 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -983,7 +983,8 @@ function room_mt:handle_presence_to_room(origin, stanza) return handled; end -function room_mt:handle_mediated_invite(origin, stanza, payload) +function room_mt:handle_mediated_invite(origin, stanza) + local payload = stanza:get_child("x", "http://jabber.org/protocol/muc#user"):get_child("invite") local _from, _to = stanza.attr.from, stanza.attr.to; local current_nick = self:get_occupant_jid(_from) if not current_nick then -- Should be in room to send invite TODO: allow admins to send at any time @@ -1030,7 +1031,8 @@ module:hook("muc-invite-prepared", function(event) end end) -function room_mt:handle_mediated_decline(origin, stanza, payload) +function room_mt:handle_mediated_decline(origin, stanza) + local payload = stanza:get_child("x", "http://jabber.org/protocol/muc#user"):get_child("decline") local declinee = jid_prep(payload.attr.to); if declinee then local from, to = stanza.attr.from, stanza.attr.to; @@ -1066,9 +1068,9 @@ function room_mt:handle_message_to_room(origin, stanza) if payload == nil then -- fallthrough elseif payload.name == "invite" and payload.attr.to then - return self:handle_mediated_invite(origin, stanza, payload) + return self:handle_mediated_invite(origin, stanza) elseif payload.name == "decline" and payload.attr.to then - return self:handle_mediated_decline(origin, stanza, payload) + return self:handle_mediated_decline(origin, stanza) end origin.send(st.error_reply(stanza, "cancel", "bad-request")); return true; |