Software /
code /
prosody
Changeset
4851:8e3992ae7bf5
mod_dialback: Remove a remaining usage of string.format, ick.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 11 May 2012 14:24:05 +0100 |
parents | 4850:3662091d303c |
children | 4852:9cc934f49df0 |
files | plugins/mod_dialback.lua |
diffstat | 1 files changed, 1 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_dialback.lua Fri May 11 02:36:26 2012 +0100 +++ b/plugins/mod_dialback.lua Fri May 11 14:24:05 2012 +0100 @@ -6,8 +6,6 @@ -- COPYING file in the source package for more information. -- -local format = string.format; - local hosts = _G.hosts; local s2s_make_authenticated = require "core.s2smanager".make_authenticated; @@ -28,7 +26,7 @@ function initiate_dialback(session) -- generate dialback key 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"); end