diff options
author | Kim Alvefur <zash@zash.se> | 2012-07-26 04:35:13 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2012-07-26 04:35:13 +0200 |
commit | 4330e1308d1858206a3da4fcfea39e04d1d5a141 (patch) | |
tree | b262fce04e2743e13aa28d39844d2bff7bf354dc /plugins/mod_register.lua | |
parent | 790e0bb9b426413f10e5efcd0dfd680e9bf20de2 (diff) | |
download | prosody-4330e1308d1858206a3da4fcfea39e04d1d5a141.tar.gz prosody-4330e1308d1858206a3da4fcfea39e04d1d5a141.zip |
mod_announce, mod_motd, mod_pubsub, mod_register, mod_watchregistrations, mod_welcome: Use module:send() instead of core_*_stanza()
Diffstat (limited to 'plugins/mod_register.lua')
-rw-r--r-- | plugins/mod_register.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_register.lua b/plugins/mod_register.lua index 755b718e..6c690c3b 100644 --- a/plugins/mod_register.lua +++ b/plugins/mod_register.lua @@ -120,10 +120,10 @@ local function handle_registration_stanza(event) for jid, item in pairs(roster) do if jid and jid ~= "pending" then if item.subscription == "both" or item.subscription == "from" or (roster.pending and roster.pending[jid]) then - core_post_stanza(hosts[host], st.presence({type="unsubscribed", from=bare, to=jid})); + module:send(st.presence({type="unsubscribed", from=bare, to=jid})); end if item.subscription == "both" or item.subscription == "to" or item.ask then - core_post_stanza(hosts[host], st.presence({type="unsubscribe", from=bare, to=jid})); + module:send(st.presence({type="unsubscribe", from=bare, to=jid})); end end end |