mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
s2smanager: Fix a traceback when we close a s2s connection ourselves (thanks for the testing Zash).
This commit is contained in:
parent
94d42dfe87
commit
6e9784727f
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ local resting_session = { -- Resting, not dead
|
|||
function retire_session(session, reason)
|
||||
local log = session.log or log;
|
||||
for k in pairs(session) do
|
||||
if k ~= "trace" and k ~= "log" and k ~= "id" then
|
||||
if k ~= "trace" and k ~= "log" and k ~= "id" and k ~= "conn" then
|
||||
session[k] = nil;
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue