aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-12-15 11:55:27 +0100
committerKim Alvefur <zash@zash.se>2018-12-15 11:55:27 +0100
commitb31939c492c5ff5da83d46ea9b9ce42dde07f3db (patch)
tree40afacc0163611dafac523d01f33f854fed8ecca /plugins
parent968eaf41a85439c6f13a0dffab06ed79fec87f41 (diff)
downloadprosody-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.lua2
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";