# HG changeset patch # User Emmanuel Gil Peyrot # Date 1496173942 -3600 # Node ID 5566f82ffea413146a3d10d0746a940fa102b994 # Parent f0d847316723ddd4c453c0478adca00221122479 mod_welcome: Return the pointer to the root of the stanza, fixes a bug similar to #922. diff -r f0d847316723 -r 5566f82ffea4 plugins/mod_welcome.lua --- a/plugins/mod_welcome.lua Sat May 27 15:53:30 2017 +0100 +++ b/plugins/mod_welcome.lua Tue May 30 20:52:22 2017 +0100 @@ -14,8 +14,8 @@ 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);