aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-07-07 20:57:20 +0200
committerKim Alvefur <zash@zash.se>2018-07-07 20:57:20 +0200
commitb6dc9e444af1612c7ac757d3711f8d514483048b (patch)
tree59dfa54bf20048ea6f8473e9844171518a82842b
parent3f37550ae475abf599f65dc6feaaade22456d590 (diff)
downloadprosody-b6dc9e444af1612c7ac757d3711f8d514483048b.tar.gz
prosody-b6dc9e444af1612c7ac757d3711f8d514483048b.zip
mod_groups: Log a warning about invalid JIDs (#1180)
-rw-r--r--plugins/mod_groups.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/mod_groups.lua b/plugins/mod_groups.lua
index d696d453..71a5271a 100644
--- a/plugins/mod_groups.lua
+++ b/plugins/mod_groups.lua
@@ -112,6 +112,8 @@ function module.load()
groups[curr_group][jid] = name or false;
members[jid] = members[jid] or {};
members[jid][#members[jid]+1] = curr_group;
+ elseif entryjid:match("%S") then
+ module:log("warn", "Invalid JID: %q", entryjid);
end
end
end