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 | fd894fe73e9890435a1c0ec97b660c888ac38e3b (patch) | |
tree | b62d53ea2041a4fa193e4b0c160fc308c8151b8a | |
parent | beb642888ec3e3c27d96f6e4cf969033b8495d8e (diff) | |
parent | d494870913b1789d0313681ff74c0954a4bde3df (diff) | |
download | prosody-fd894fe73e9890435a1c0ec97b660c888ac38e3b.tar.gz prosody-fd894fe73e9890435a1c0ec97b660c888ac38e3b.zip |
Merge 0.10->trunk
-rw-r--r-- | plugins/mod_carbons.lua | 10 | ||||
-rw-r--r-- | plugins/mod_message.lua | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/plugins/mod_carbons.lua b/plugins/mod_carbons.lua index 4d8175ef..4984b908 100644 --- a/plugins/mod_carbons.lua +++ b/plugins/mod_carbons.lua @@ -100,11 +100,11 @@ local function c2s_message_handler(event) end -- Stanzas sent by local clients -module:hook("pre-message/host", c2s_message_handler, 1); -module:hook("pre-message/bare", c2s_message_handler, 1); -module:hook("pre-message/full", c2s_message_handler, 1); +module:hook("pre-message/host", c2s_message_handler, -0.5); +module:hook("pre-message/bare", c2s_message_handler, -0.5); +module:hook("pre-message/full", c2s_message_handler, -0.5); -- Stanzas to local clients -module:hook("message/bare", message_handler, 1); -module:hook("message/full", message_handler, 1); +module:hook("message/bare", message_handler, -0.5); +module:hook("message/full", message_handler, -0.5); module:add_feature(xmlns_carbons); 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"); |