Mercurial > prosody-hg
diff plugins/mod_carbons.lua @ 7719:17c7e3ac47f7
Merge 0.10->trunk
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Thu, 17 Nov 2016 23:20:41 +0100 |
| parents | c58075c4d375 |
| children | 63f50a84318f |
line wrap: on
line diff
--- a/plugins/mod_carbons.lua Sat Nov 05 00:28:30 2016 +0100 +++ b/plugins/mod_carbons.lua Thu Nov 17 23:20:41 2016 +0100 @@ -100,11 +100,11 @@ 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);
