Merge 0.12->trunk
authorMatthew Wild <mwild1@gmail.com>
Fri, 06 May 2022 17:09:06 +0100
changeset 12496 a44c328028ad
parent 12494 1c5cb4c49c50 (current diff)
parent 12495 dc0c20753d6c (diff)
child 12497 e9ea5c88def0
Merge 0.12->trunk
--- a/plugins/mod_invites_adhoc.lua	Thu May 05 14:15:15 2022 +0200
+++ b/plugins/mod_invites_adhoc.lua	Fri May 06 17:09:06 2022 +0100
@@ -45,7 +45,11 @@
 local function may_invite_new_users(jid)
 	if usermanager.get_roles then
 		local user_roles = usermanager.get_roles(jid, module.host);
-		if not user_roles then return; end
+		if not user_roles then
+			-- User has no roles we can check, just return default
+			return allow_user_invites;
+		end
+
 		if user_roles["prosody:admin"] then
 			return true;
 		end