From f5ea676b92a92fd720ad083d7e2a3b3a471545e7 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Fri, 24 Sep 2021 20:26:21 +0200 Subject: 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. --- core/moduleapi.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core') diff --git a/core/moduleapi.lua b/core/moduleapi.lua index 52410352..9bbff0c9 100644 --- a/core/moduleapi.lua +++ b/core/moduleapi.lua @@ -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({ -- cgit v1.2.3