mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
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?
This commit is contained in:
parent
968eaf41a8
commit
b31939c492
1 changed files with 1 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue