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
commit835f4fbffc133104d90ff0c4382aef2605e60c1e (patch)
treeb9a852330e21af354812ee94661158a700c1c12d
parenteb5f70d68e06daf5d3ef6bcef9163fcabc5ce02a (diff)
downloadprosody-835f4fbffc133104d90ff0c4382aef2605e60c1e.tar.gz
prosody-835f4fbffc133104d90ff0c4382aef2605e60c1e.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