Diff

core/s2smanager.lua @ 5105:50688a2856f7

s2smanager: missing return on session.send function.
author Marco Cirillo <maranda@lightwitch.org>
date Sun, 26 Aug 2012 22:54:10 +0000
parent 4994:d4e6a07a7c33
child 5306:10bc0e2aa55e
line wrap: on
line diff
--- a/core/s2smanager.lua	Sun Aug 26 20:53:40 2012 +0200
+++ b/core/s2smanager.lua	Sun Aug 26 22:54:10 2012 +0000
@@ -96,7 +96,7 @@
 	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);