mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
core.moduleapi: Ensure module:send_iq() handler priority over mod_iq
To prevent a situation where you for whatever reason use a full JID that is currently online and the response ends up routed there instead of the module:send_iq() handlers.
This commit is contained in:
parent
e341f785e6
commit
f5ea676b92
1 changed files with 2 additions and 2 deletions
|
@ -421,8 +421,8 @@ function api:send_iq(stanza, origin, timeout)
|
|||
return;
|
||||
end
|
||||
|
||||
self:hook(result_event, result_handler);
|
||||
self:hook(error_event, error_handler);
|
||||
self:hook(result_event, result_handler, 1);
|
||||
self:hook(error_event, error_handler, 1);
|
||||
|
||||
local timeout_handle = self:add_timer(timeout or 120, function ()
|
||||
reject(errors.new({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue