# HG changeset patch # User Kim Alvefur # Date 1479418726 -3600 # Node ID c58075c4d37501bf101b293de87b93f7b069342c # Parent 779a9ef6b4fddd1516d438b319ce7182c09b0fbc mod_message, mod_carbons: Adjust event hook priorities to negative (core modules should do this to make overriding from other modules easier) diff -r 779a9ef6b4fd -r c58075c4d375 plugins/mod_carbons.lua --- a/plugins/mod_carbons.lua Fri Nov 04 13:28:10 2016 +0100 +++ b/plugins/mod_carbons.lua Thu Nov 17 22:38:46 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); diff -r 779a9ef6b4fd -r c58075c4d375 plugins/mod_message.lua --- a/plugins/mod_message.lua Fri Nov 04 13:28:10 2016 +0100 +++ b/plugins/mod_message.lua Thu Nov 17 22:38:46 2016 +0100 @@ -73,13 +73,13 @@ 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");