Some bugs fixed

This commit is contained in:
Waqas Hussain 2008-11-15 05:33:14 +05:00
parent 22df06d27d
commit fc57c3a09a
4 changed files with 4 additions and 4 deletions

View file

@ -78,7 +78,7 @@ function xmppclient.disconnect(conn)
if session then
if session.last_presence and session.last_presence.attr.type ~= "unavailable" then
local pres = st.presence{ type = "unavailable" };
if err == "closed" then err = "connection closed"; end
if err == "closed" then err = "connection closed"; end --FIXME where did err come from?
pres:tag("status"):text("Disconnected: "..err);
session.stanza_dispatch(pres);
end