aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_watchregistrations.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-05-27 17:30:16 +0200
committerKim Alvefur <zash@zash.se>2017-05-27 17:30:16 +0200
commit3513190931f213b9f661dde88db87ddbfd531b35 (patch)
tree04a1c3f3af54f4b092c83cce4df035594f3b6ac1 /plugins/mod_watchregistrations.lua
parent240b0bb53ec6286c5cdce7d8ca10af514a00bb0f (diff)
parent607f7ee607b814000ac65e1e032ee4a20c91116e (diff)
downloadprosody-3513190931f213b9f661dde88db87ddbfd531b35.tar.gz
prosody-3513190931f213b9f661dde88db87ddbfd531b35.zip
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_watchregistrations.lua')
-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 dc979b9a..82666b09 100644
--- a/plugins/mod_watchregistrations.lua
+++ b/plugins/mod_watchregistrations.lua
@@ -22,7 +22,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;