mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_proxy65: Fix passing number to stanza API (thanks mimi89999)
This commit is contained in:
parent
7a83585658
commit
8a86a05126
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ function module.add_host(module)
|
|||
|
||||
local sid = stanza.tags[1].attr.sid;
|
||||
origin.send(st.reply(stanza):tag("query", {xmlns="http://jabber.org/protocol/bytestreams", sid=sid})
|
||||
:tag("streamhost", {jid=host, host=proxy_address, port=proxy_port}));
|
||||
:tag("streamhost", {jid=host, host=proxy_address, port=("%d"):format(proxy_port)}));
|
||||
return true;
|
||||
end);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue