aboutsummaryrefslogtreecommitdiffstats
path: root/core/s2smanager.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2012-07-08 18:49:44 +0100
committerMatthew Wild <mwild1@gmail.com>2012-07-08 18:49:44 +0100
commitbd050e2b64086b818592f81606b52db8bb01309e (patch)
tree1b780be536dea23b0e32d06cee9eeef6bc0ec5a1 /core/s2smanager.lua
parent28df9086d844e7a8ca6f26b55fe6297e044e7be7 (diff)
parentf305f2082762ad627aaf018132d81382a5206cbd (diff)
downloadprosody-bd050e2b64086b818592f81606b52db8bb01309e.tar.gz
prosody-bd050e2b64086b818592f81606b52db8bb01309e.zip
Merge 0.9->trunk
Diffstat (limited to 'core/s2smanager.lua')
-rw-r--r--core/s2smanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua
index 9e0a91d1..5fe3a375 100644
--- a/core/s2smanager.lua
+++ b/core/s2smanager.lua
@@ -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