mod_adhoc_groups: Fix responding with "You are already in this group." (was never sent before)
authorKarol Topolski <ktopolski.it@gmail.com>
Wed, 20 May 2020 17:25:59 +0200
changeset 4034 0d7293c37e1a
parent 4033 b9bd56790286
child 4035 b2a6e163a6b4
mod_adhoc_groups: Fix responding with "You are already in this group." (was never sent before)
mod_adhoc_groups/mod_adhoc_groups.lua
--- a/mod_adhoc_groups/mod_adhoc_groups.lua	Wed May 20 17:24:15 2020 +0200
+++ b/mod_adhoc_groups/mod_adhoc_groups.lua	Wed May 20 17:25:59 2020 +0200
@@ -131,7 +131,7 @@
 						return false, "No such group";
 					end
 				end
-				if group[data.from] then
+				if group[user] then
 					return false, "You are already in this group.";
 				end