moduleapi: Rename argument to silence luacheck

This commit is contained in:
Kim Alvefur 2020-04-01 22:32:50 +02:00
parent 7e181e31e0
commit 38742f7b50

View file

@ -438,8 +438,8 @@ function api:send_iq(stanza, origin, timeout)
local wrapped_origin = setmetatable({
-- XXX Needed in some cases for replies to work correctly when sending queries internally.
send = function (stanza)
resolve({ stanza = stanza });
send = function (reply)
resolve({ stanza = reply });
end;
}, {
__index = origin or hosts[self.host];