mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
mod_dialback: Remove a remaining usage of string.format, ick.
This commit is contained in:
parent
515110f944
commit
54c67720af
1 changed files with 1 additions and 3 deletions
|
@ -6,8 +6,6 @@
|
||||||
-- COPYING file in the source package for more information.
|
-- COPYING file in the source package for more information.
|
||||||
--
|
--
|
||||||
|
|
||||||
local format = string.format;
|
|
||||||
|
|
||||||
local hosts = _G.hosts;
|
local hosts = _G.hosts;
|
||||||
local s2s_make_authenticated = require "core.s2smanager".make_authenticated;
|
local s2s_make_authenticated = require "core.s2smanager".make_authenticated;
|
||||||
|
|
||||||
|
@ -28,7 +26,7 @@ end
|
||||||
function initiate_dialback(session)
|
function initiate_dialback(session)
|
||||||
-- generate dialback key
|
-- generate dialback key
|
||||||
session.dialback_key = generate_dialback(session.streamid, session.to_host, session.from_host);
|
session.dialback_key = generate_dialback(session.streamid, session.to_host, session.from_host);
|
||||||
session.sends2s(format("<db:result from='%s' to='%s'>%s</db:result>", session.from_host, session.to_host, session.dialback_key));
|
session.sends2s(st.stanza("db:result", { from = session.from_host, to = session.to_host }):text(session.dialback_key));
|
||||||
session.log("info", "sent dialback key on outgoing s2s stream");
|
session.log("info", "sent dialback key on outgoing s2s stream");
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue