diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/s2smanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua index 8705633d..0ad8f83b 100644 --- a/core/s2smanager.lua +++ b/core/s2smanager.lua @@ -582,7 +582,7 @@ function destroy_session(session, reason) if hosts[session.from_host] then hosts[session.from_host].events.fire_event("s2sout-destroyed", event_data); end - else + elseif session.type == "s2sin" then prosody.events.fire_event("s2sin-destroyed", event_data); if hosts[session.to_host] then hosts[session.to_host].events.fire_event("s2sin-destroyed", event_data); |