Merge
authorMatthew Wild <mwild1@gmail.com>
Wed, 10 Jun 2020 22:20:00 +0100
changeset 4048 f4999d75d305
parent 4046 78ac5500a844 (current diff)
parent 4047 a533abe6ffd0 (diff)
child 4049 4fc6cf528a9a
Merge
--- a/mod_vcard_muc/mod_vcard_muc.lua	Wed Jun 10 12:21:10 2020 +0200
+++ b/mod_vcard_muc/mod_vcard_muc.lua	Wed Jun 10 22:20:00 2020 +0100
@@ -60,6 +60,10 @@
 	local room_jid = stanza.attr.to;
 	local room_node = jid_split(room_jid);
 	local room = get_room_from_jid(room_jid);
+	if not room then
+		session.send(st.error_reply(stanza, "cancel", "item-not-found"))
+		return true;
+	end
 
 	local from = stanza.attr.from;
 	local from_affiliation = room:get_affiliation(from);