aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2017-05-27 14:23:43 +0100
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2017-05-27 14:23:43 +0100
commit8f83edd75ce188587c6125d9c12c1207d0e1d69d (patch)
tree2e28c62acf5ec5af39fbf20c49131b61ba4acbdc /plugins
parente31827002b8fe636b55057ffc81671bb9c6c8b52 (diff)
downloadprosody-8f83edd75ce188587c6125d9c12c1207d0e1d69d.tar.gz
prosody-8f83edd75ce188587c6125d9c12c1207d0e1d69d.zip
mod_watchregistrations: Return the pointer to the root of the stanza, fixes #922.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_watchregistrations.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/mod_watchregistrations.lua b/plugins/mod_watchregistrations.lua
index abca90bd..0e9d2fca 100644
--- a/plugins/mod_watchregistrations.lua
+++ b/plugins/mod_watchregistrations.lua
@@ -21,7 +21,8 @@ module:hook("user-registered", function (user)
:tag("body")
:text(registration_notification:gsub("%$(%w+)", function (v)
return user[v] or user.session and user.session[v] or nil;
- end));
+ end))
+ :up();
for jid in registration_watchers do
module:log("debug", "Notifying %s", jid);
message.attr.to = jid;