aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_watchregistrations.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-05-27 16:42:50 +0200
committerKim Alvefur <zash@zash.se>2017-05-27 16:42:50 +0200
commit2de6a3c39488f2f545e4f70cd7b36addc283f34d (patch)
tree63f6c38195e6899a068269e4d7a1eb67c0382ecd /plugins/mod_watchregistrations.lua
parent06b5c50c4e4751e54ca01175d2898bb88cd84819 (diff)
parentdf7d65413de0e9b9ed047dd701a400fd8873d0ec (diff)
downloadprosody-2de6a3c39488f2f545e4f70cd7b36addc283f34d.tar.gz
prosody-2de6a3c39488f2f545e4f70cd7b36addc283f34d.zip
Merge 0.9->0.10
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;