diff options
author | Kim Alvefur <zash@zash.se> | 2017-05-17 01:06:20 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-05-17 01:06:20 +0200 |
commit | 9b9d6a9ba97ee9160fcd4d28e2509ca768d15de7 (patch) | |
tree | 87920ea2589baddc568772aeebb1fda17b5c9e0c /plugins/mod_message.lua | |
parent | 0c291f3a41eb20f4af48c535eb3b7cfa144b5778 (diff) | |
parent | bd52588649aae5fffa05f1f60d3a9dcd27281271 (diff) | |
download | prosody-9b9d6a9ba97ee9160fcd4d28e2509ca768d15de7.tar.gz prosody-9b9d6a9ba97ee9160fcd4d28e2509ca768d15de7.zip |
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_message.lua')
-rw-r--r-- | plugins/mod_message.lua | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/plugins/mod_message.lua b/plugins/mod_message.lua index 2ee75c21..0d370ec1 100644 --- a/plugins/mod_message.lua +++ b/plugins/mod_message.lua @@ -48,11 +48,10 @@ local function process_to_bare(bare, origin, stanza) local node, host = jid_split(bare); local ok if user_exists(node, host) then - -- TODO apply the default privacy list - ok = module:fire_event('message/offline/handle', { - origin = origin, - stanza = stanza, + username = node; + origin = origin, + stanza = stanza, }); end |