aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_version.lua
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/mod_version.lua')
-rw-r--r--plugins/mod_version.lua13
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);