MUC: Fixed an incorrect error message.
[prosody.git] / plugins / mod_roster.lua
index 7ffaa89f2ef6cfa8ac8dd4f969a4a31afc350f24..7ca22aa1aa9f2b3c6f3c20ce6f71e352ae1ffdde 100644 (file)
@@ -1,4 +1,4 @@
--- Prosody IM v0.4
+-- Prosody IM
 -- Copyright (C) 2008-2009 Matthew Wild
 -- Copyright (C) 2008-2009 Waqas Hussain
 -- 
@@ -24,7 +24,7 @@ module:add_feature("jabber:iq:roster");
 
 local rosterver_stream_feature = st.stanza("ver", {xmlns="urn:xmpp:features:rosterver"}):tag("optional"):up();
 module:add_event_hook("stream-features", 
-               function (session, features)                                                                                            
+               function (session, features)
                        if session.username then
                                features:add_child(rosterver_stream_feature);
                        end