mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
s2smanager: missing return on session.send function.
This commit is contained in:
parent
4e9c9163be
commit
d4e080f745
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue