aboutsummaryrefslogtreecommitdiffstats
path: root/core/s2smanager.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2015-05-14 00:22:13 +0200
committerKim Alvefur <zash@zash.se>2015-05-14 00:22:13 +0200
commitbaf8af6d14d5f42c13dbe9136dfa606e0dc4acf2 (patch)
treeb9a852330e21af354812ee94661158a700c1c12d /core/s2smanager.lua
parentbbdd807af4b5bb1a5cf78accefa26f7f36e4668f (diff)
downloadprosody-baf8af6d14d5f42c13dbe9136dfa606e0dc4acf2.tar.gz
prosody-baf8af6d14d5f42c13dbe9136dfa606e0dc4acf2.zip
s2smanager: Make sure destroyed sessions have a sends2s method
Diffstat (limited to 'core/s2smanager.lua')
-rw-r--r--core/s2smanager.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua
index 06d3f2c9..fb5c4299 100644
--- a/core/s2smanager.lua
+++ b/core/s2smanager.lua
@@ -64,6 +64,7 @@ function retire_session(session, reason)
function session.send(data) log("debug", "Discarding data sent to resting session: %s", tostring(data)); end
function session.data(data) log("debug", "Discarding data received from resting session: %s", tostring(data)); end
+ session.sends2s = session.send;
return setmetatable(session, resting_session);
end