Use a stanza for c2s stream features instead of an array of strings. Removes a FIXME.
[prosody.git] / plugins / mod_version.lua
index 552480e0fa6fbf3c10c932953431606fabf70386..d359967802eb779d787b949f4350541a163c337d 100644 (file)
@@ -1,6 +1,5 @@
 
 local st = require "util.stanza";
-local send = require "core.sessionmanager".send_to_session;
 
 local log = require "util.logger".init("mod_version");
 
@@ -11,7 +10,7 @@ local function handle_version_request(session, stanza)
                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"));
+                       :tag("os"):text("the best operating system ever!"));
        end
 end