Software /
code /
prosody
Changeset
9025:0f12d46cf754
MUC: Fix stanza reference
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 12 Jul 2018 02:15:22 +0200 |
parents | 9024:43241e74bb19 |
children | 9026:91b5a5667016 |
files | plugins/muc/muc.lib.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/muc/muc.lib.lua Thu Jul 12 02:14:16 2018 +0200 +++ b/plugins/muc/muc.lib.lua Thu Jul 12 02:15:22 2018 +0200 @@ -404,7 +404,7 @@ module:hook("muc-occupant-pre-join", function(event) local nick = jid_resource(event.stanza.attr.from); if not nick:find("%S") then - event.origin.send(st.error_reply(stanza, "modify", "not-allowed", "Invisible Nicknames are forbidden")); + event.origin.send(st.error_reply(event.stanza, "modify", "not-allowed", "Invisible Nicknames are forbidden")); return true; end end, 1);