Fix for sessionmanager to not throw error when session doesn't have a private logger

This commit is contained in:
Matthew Wild 2008-10-24 14:47:23 +01:00
parent a8c4e8eb51
commit 0aade7cf5f

View file

@ -34,7 +34,7 @@ function new_session(conn)
end
function destroy_session(session)
session.log("info", "Destroying session");
(session.log or log)("info", "Destroying session");
if session.host and session.username then
if session.resource then
hosts[session.host].sessions[session.username].sessions[session.resource] = nil;