diff options
author | Waqas Hussain <waqas20@gmail.com> | 2008-11-06 16:57:10 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2008-11-06 16:57:10 +0500 |
commit | a88ddeb67d6d8a31da4ac79d1c2d1a1d776c2c7c (patch) | |
tree | 87f6bec4cca50a58699b7f028c14482f72100792 /plugins/mod_version.lua | |
parent | 0ff2eacdaff1bd87affc600c35d005a34eda9e04 (diff) | |
download | prosody-a88ddeb67d6d8a31da4ac79d1c2d1a1d776c2c7c.tar.gz prosody-a88ddeb67d6d8a31da4ac79d1c2d1a1d776c2c7c.zip |
Fixed some whitespace.
Diffstat (limited to 'plugins/mod_version.lua')
-rw-r--r-- | plugins/mod_version.lua | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/plugins/mod_version.lua b/plugins/mod_version.lua index d351d75b..552480e0 100644 --- a/plugins/mod_version.lua +++ b/plugins/mod_version.lua @@ -7,13 +7,12 @@ local log = require "util.logger".init("mod_version"); 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); |