diff options
author | Kim Alvefur <zash@zash.se> | 2018-12-15 11:55:27 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-12-15 11:55:27 +0100 |
commit | b31939c492c5ff5da83d46ea9b9ce42dde07f3db (patch) | |
tree | 40afacc0163611dafac523d01f33f854fed8ecca /plugins | |
parent | 968eaf41a85439c6f13a0dffab06ed79fec87f41 (diff) | |
download | prosody-b31939c492c5ff5da83d46ea9b9ce42dde07f3db.tar.gz prosody-b31939c492c5ff5da83d46ea9b9ce42dde07f3db.zip |
MUC: Fix traceback when requesting voice (fixes #1269) (thanks jonas’)
Introduced by change from add_child to add_direct_child in ce57c69a20e2
Why does add_direct_child not return self like everything else?
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/muc/request.lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/request.lib.lua b/plugins/muc/request.lib.lua index 1d9c39f9..4e95fdc3 100644 --- a/plugins/muc/request.lib.lua +++ b/plugins/muc/request.lib.lua @@ -82,7 +82,7 @@ module:hook("muc-voice-request", function(event) }; local message = st.message({ type = "normal"; from = event.room.jid }) - :add_direct_child(voice_request_form:form(formdata)); + :add_child(voice_request_form:form(formdata)); event.room:broadcast(message, function (_, occupant) return occupant.role == "moderator"; |