MUC: Use nickname from occupant object
authorKim Alvefur <zash@zash.se>
Thu, 12 Jul 2018 02:31:47 +0200
changeset 9029 91b5a5667016
parent 9028 0f12d46cf754
child 9030 4028eb4a9f7f
MUC: Use nickname from occupant object
plugins/muc/muc.lib.lua
--- a/plugins/muc/muc.lib.lua	Thu Jul 12 02:15:22 2018 +0200
+++ b/plugins/muc/muc.lib.lua	Thu Jul 12 02:31:47 2018 +0200
@@ -402,7 +402,7 @@
 end, -10);
 
 module:hook("muc-occupant-pre-join", function(event)
-	local nick = jid_resource(event.stanza.attr.from);
+	local nick = jid_resource(event.occupant.nick);
 	if not nick:find("%S") then
 		event.origin.send(st.error_reply(event.stanza, "modify", "not-allowed", "Invisible Nicknames are forbidden"));
 		return true;