mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
even faster checking for other sessions... thank you waqas :)
This commit is contained in:
parent
9e6c3919af
commit
3286f0609f
1 changed files with 1 additions and 6 deletions
|
@ -39,12 +39,7 @@ function destroy_session(session)
|
|||
if session.resource then
|
||||
hosts[session.host].sessions[session.username].sessions[session.resource] = nil;
|
||||
end
|
||||
local nomore = true;
|
||||
for res, ssn in pairs(hosts[session.host].sessions[session.username]) do
|
||||
nomore = false;
|
||||
break;
|
||||
end
|
||||
if nomore then
|
||||
if not next(hosts[session.host].sessions[session.username], nil) then
|
||||
hosts[session.host].sessions[session.username] = nil;
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue