mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
Fix for previous commit (again)
This commit is contained in:
parent
deb12dc32b
commit
130049e231
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ function modulehelpers.add_iq_handler(origin_type, xmlns, handler)
|
||||||
if not (origin_type and handler and xmlns) then return false; end
|
if not (origin_type and handler and xmlns) then return false; end
|
||||||
if type(origin_type) == "table" then
|
if type(origin_type) == "table" then
|
||||||
for _, origin_type in ipairs(origin_type) do
|
for _, origin_type in ipairs(origin_type) do
|
||||||
_add_iq_handler(getfenv(2), origin_type, xmlns, handler);
|
_add_iq_handler(getfenv(2).module, origin_type, xmlns, handler);
|
||||||
end
|
end
|
||||||
return;
|
return;
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue