mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Fix for sessionmanager to not throw error when session doesn't have a private logger
This commit is contained in:
parent
a8c4e8eb51
commit
0aade7cf5f
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue