# HG changeset patch # User Waqas Hussain # Date 1291289002 -18000 # Node ID e5cc0fe5eec31d34765a0a2e20399d43535b6394 # Parent e5c16c87383cedc698b22564e7be584f03b83fd4 mod_ircd: Give stanza handlers a negative priority, to allow mod_iq to process them first. diff -r e5c16c87383c -r e5cc0fe5eec3 mod_ircd/mod_ircd.lua --- a/mod_ircd/mod_ircd.lua Mon Nov 29 17:58:42 2010 +0000 +++ b/mod_ircd/mod_ircd.lua Thu Dec 02 16:23:22 2010 +0500 @@ -176,15 +176,15 @@ irc_component(event.origin, event.stanza); return true; end -module:hook("iq/bare", stanza_handler); -module:hook("message/bare", stanza_handler); -module:hook("presence/bare", stanza_handler); -module:hook("iq/full", stanza_handler); -module:hook("message/full", stanza_handler); -module:hook("presence/full", stanza_handler); -module:hook("iq/host", stanza_handler); -module:hook("message/host", stanza_handler); -module:hook("presence/host", stanza_handler); +module:hook("iq/bare", stanza_handler, -1); +module:hook("message/bare", stanza_handler, -1); +module:hook("presence/bare", stanza_handler, -1); +module:hook("iq/full", stanza_handler, -1); +module:hook("message/full", stanza_handler, -1); +module:hook("presence/full", stanza_handler, -1); +module:hook("iq/host", stanza_handler, -1); +module:hook("message/host", stanza_handler, -1); +module:hook("presence/host", stanza_handler, -1); require "core.componentmanager".register_component(module.host, function() end); -- COMPAT Prosody 0.7 prosody.events.add_handler("server-stopping", function (shutdown)