mod_watchregistrations: Return the pointer to the root of the stanza, fixes #922.

This commit is contained in:
Emmanuel Gil Peyrot 2017-05-27 14:23:43 +01:00
parent 1b616a9320
commit df7d65413d

View file

@ -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;