mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_bosh: Remove requests from the session table using table.remove(), prevents the possibility of holes in the array.
This commit is contained in:
parent
c43b31011f
commit
a36bf4db9b
1 changed files with 5 additions and 2 deletions
|
@ -47,8 +47,11 @@ function on_destroy_request(request)
|
|||
local session = sessions[request.sid];
|
||||
if session then
|
||||
local requests = session.requests;
|
||||
for i,r in pairs(requests) do
|
||||
if r == request then requests[i] = nil; break; end
|
||||
for i,r in ipairs(requests) do
|
||||
if r == request then
|
||||
t_remove(requests, i);
|
||||
break;
|
||||
end
|
||||
end
|
||||
|
||||
-- If this session now has no requests open, mark it as inactive
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue