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 | 6245f59b5b5f3d71a25f951a37e8328c82dca6c4 (patch) | |
tree | 63f6c38195e6899a068269e4d7a1eb67c0382ecd /plugins/mod_watchregistrations.lua | |
parent | 6c2de6971756e87dc7ce5165182128b4dbc05f2d (diff) | |
parent | 55e76121a0b4842f2381b10327737ab00360de57 (diff) | |
download | prosody-6245f59b5b5f3d71a25f951a37e8328c82dca6c4.tar.gz prosody-6245f59b5b5f3d71a25f951a37e8328c82dca6c4.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; |