diff options
author | Kim Alvefur <zash@zash.se> | 2017-05-27 16:42:50 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-05-27 16:42:50 +0200 |
commit | 2de6a3c39488f2f545e4f70cd7b36addc283f34d (patch) | |
tree | 63f6c38195e6899a068269e4d7a1eb67c0382ecd /plugins/mod_watchregistrations.lua | |
parent | 06b5c50c4e4751e54ca01175d2898bb88cd84819 (diff) | |
parent | df7d65413de0e9b9ed047dd701a400fd8873d0ec (diff) | |
download | prosody-2de6a3c39488f2f545e4f70cd7b36addc283f34d.tar.gz prosody-2de6a3c39488f2f545e4f70cd7b36addc283f34d.zip |
Merge 0.9->0.10
Diffstat (limited to 'plugins/mod_watchregistrations.lua')
-rw-r--r-- | plugins/mod_watchregistrations.lua | 3 |
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; |