aboutsummaryrefslogtreecommitdiffstats
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
commitfd5adf33d06749b124b2674f295826c2960d9995 (patch)
treeb9a852330e21af354812ee94661158a700c1c12d
parentddc9a47072862ea93645917a23755935b7607690 (diff)
downloadprosody-fd5adf33d06749b124b2674f295826c2960d9995.tar.gz
prosody-fd5adf33d06749b124b2674f295826c2960d9995.zip
s2smanager: Make sure destroyed sessions have a sends2s method
-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