mod_welcome: Return the pointer to the root of the stanza, fixes a bug similar to #922.

This commit is contained in:
Emmanuel Gil Peyrot 2017-05-30 20:52:22 +01:00
parent f3887c158b
commit ec9e9df9c7

View file

@ -14,8 +14,8 @@ local st = require "util.stanza";
module:hook("user-registered",
function (user)
local welcome_stanza =
st.message({ to = user.username.."@"..user.host, from = host })
:tag("body"):text(welcome_text:gsub("$(%w+)", user));
st.message({ to = user.username.."@"..user.host, from = host },
welcome_text:gsub("$(%w+)", user));
module:send(welcome_stanza);
module:log("debug", "Welcomed user %s@%s", user.username, user.host);
end);