Software /
code /
prosody
Diff
plugins/mod_version.lua @ 219:f06e97f525bc
Fixed some whitespace.
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Thu, 06 Nov 2008 16:57:10 +0500 |
parent | 189:3f0e3a07b491 |
child | 298:985710ea308b |
line wrap: on
line diff
--- a/plugins/mod_version.lua Thu Nov 06 16:52:39 2008 +0500 +++ b/plugins/mod_version.lua Thu Nov 06 16:57:10 2008 +0500 @@ -7,13 +7,12 @@ local xmlns_version = "jabber:iq:version" local function handle_version_request(session, stanza) - if stanza.attr.type == "get" then - session.send(st.reply(stanza) - :query(xmlns_version) - :tag("name"):text("lxmppd"):up() - :tag("version"):text("pre-alpha"):up() - :tag("os"):text("The best one")); - end + if stanza.attr.type == "get" then + session.send(st.reply(stanza):query(xmlns_version) + :tag("name"):text("lxmppd"):up() + :tag("version"):text("pre-alpha"):up() + :tag("os"):text("The best one")); + end end add_iq_handler("c2s", xmlns_version, handle_version_request);