s2smanager: missing return on session.send function.

This commit is contained in:
Marco Cirillo 2012-08-26 22:54:10 +00:00
parent 4e9c9163be
commit d4e080f745

View file

@ -96,7 +96,7 @@ function mark_connected(session)
else else
local host_session = hosts[to]; local host_session = hosts[to];
session.send = function(stanza) 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; end;
prosody.events.fire_event("s2sin-established", event_data); prosody.events.fire_event("s2sin-established", event_data);