aboutsummaryrefslogtreecommitdiffstats
path: root/core/s2smanager.lua
diff options
context:
space:
mode:
authorMarco Cirillo <maranda@lightwitch.org>2012-08-26 22:54:10 +0000
committerMarco Cirillo <maranda@lightwitch.org>2012-08-26 22:54:10 +0000
commitd4e080f745645d308e0eeb9cfd6386313a45617e (patch)
tree6b7bee68e622b7780e0ad626ffd50709acb3fb99 /core/s2smanager.lua
parent4e9c9163beba59ad1f623fd592272dc5936634a7 (diff)
downloadprosody-d4e080f745645d308e0eeb9cfd6386313a45617e.tar.gz
prosody-d4e080f745645d308e0eeb9cfd6386313a45617e.zip
s2smanager: missing return on session.send function.
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 76dde9d2..4c018713 100644
--- a/core/s2smanager.lua
+++ b/core/s2smanager.lua
@@ -96,7 +96,7 @@ function mark_connected(session)
else
local host_session = hosts[to];
session.send = function(stanza)
- host_session.events.fire_event("route/remote", { from_host = to, to_host = from, stanza = stanza });
+ return host_session.events.fire_event("route/remote", { from_host = to, to_host = from, stanza = stanza });
end;
prosody.events.fire_event("s2sin-established", event_data);