mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
Fixed: kick_old resource conflict resolution policy could fail with a backtrace
This commit is contained in:
parent
0cc499e839
commit
0178275ece
1 changed files with 4 additions and 1 deletions
|
@ -126,10 +126,13 @@ function bind_resource(session, resource)
|
||||||
elseif policy == "kick_new" then
|
elseif policy == "kick_new" then
|
||||||
return nil, "cancel", "conflict", "Resource already exists";
|
return nil, "cancel", "conflict", "Resource already exists";
|
||||||
else -- if policy == "kick_old" then
|
else -- if policy == "kick_old" then
|
||||||
hosts[session.host].sessions[session.username].sessions[resource]:close {
|
sessions[resource]:close {
|
||||||
condition = "conflict";
|
condition = "conflict";
|
||||||
text = "Replaced by new connection";
|
text = "Replaced by new connection";
|
||||||
};
|
};
|
||||||
|
if not next(sessions) then
|
||||||
|
hosts[session.host].sessions[session.username] = { sessions = sessions };
|
||||||
|
end
|
||||||
end
|
end
|
||||||
if increment and sessions[resource] then
|
if increment and sessions[resource] then
|
||||||
local count = 1;
|
local count = 1;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue