Mercurial > prosody-hg
diff plugins/muc/muc.lib.lua @ 6141:bf6de8ef66c2
plugins/muc: Rename admin query hook
| author | daurnimator <quae@daurnimator.com> |
|---|---|
| date | Thu, 27 Mar 2014 18:09:42 -0400 |
| parents | e4cdb3e5d7d0 |
| children | a6e526c00e6e |
line wrap: on
line diff
--- a/plugins/muc/muc.lib.lua Mon Mar 24 16:32:18 2014 -0400 +++ b/plugins/muc/muc.lib.lua Thu Mar 27 18:09:42 2014 -0400 @@ -900,7 +900,7 @@ return true; end -function room_mt:handle_admin_item_set_command(origin, stanza) +function room_mt:handle_admin_query_set_command(origin, stanza) local item = stanza.tags[1].tags[1]; if item.attr.jid then -- Validate provided JID item.attr.jid = jid_prep(item.attr.jid); @@ -933,7 +933,7 @@ end end -function room_mt:handle_admin_item_get_command(origin, stanza) +function room_mt:handle_admin_query_get_command(origin, stanza) local actor = stanza.attr.from; local affiliation = self:get_affiliation(actor); local item = stanza.tags[1].tags[1];
