plugins/mod_version.lua

changeset 219
f06e97f525bc
parent 189
3f0e3a07b491
child 298
985710ea308b
--- 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);

mercurial