diff options
author | Kim Alvefur <zash@zash.se> | 2016-11-17 23:20:41 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-11-17 23:20:41 +0100 |
commit | 59e7a632af33944016e3cbdb8a787a82188314ba (patch) | |
tree | b62d53ea2041a4fa193e4b0c160fc308c8151b8a /plugins/mod_message.lua | |
parent | 07da428d332ef485dc4aea2f14cde5642fb0ba78 (diff) | |
parent | a89c193bb2127ba3c7756bfb8a9687ac2f944821 (diff) | |
download | prosody-59e7a632af33944016e3cbdb8a787a82188314ba.tar.gz prosody-59e7a632af33944016e3cbdb8a787a82188314ba.zip |
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_message.lua')
-rw-r--r-- | plugins/mod_message.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_message.lua b/plugins/mod_message.lua index fc337db0..47da5f46 100644 --- a/plugins/mod_message.lua +++ b/plugins/mod_message.lua @@ -73,13 +73,13 @@ module:hook("message/full", function(data) else -- resource not online return process_to_bare(jid_bare(stanza.attr.to), origin, stanza); end -end); +end, -1); module:hook("message/bare", function(data) -- message to bare JID recieved local origin, stanza = data.origin, data.stanza; return process_to_bare(stanza.attr.to or (origin.username..'@'..origin.host), origin, stanza); -end); +end, -1); module:add_feature("msgoffline"); |