diff options
author | Kim Alvefur <zash@zash.se> | 2020-12-16 08:50:20 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2020-12-16 08:50:20 +0100 |
commit | a0b5b349a60d8bd89162d26437e025f7a47300a0 (patch) | |
tree | 714e66039b024d65adf2bc8cdff934cdd9f26121 | |
parent | b501b469620af7daafb714c471072da0e4780d36 (diff) | |
download | prosody-a0b5b349a60d8bd89162d26437e025f7a47300a0.tar.gz prosody-a0b5b349a60d8bd89162d26437e025f7a47300a0.zip |
mod_s2s: Fix copypaste mistake in b3ae48362f78
Directly sending something over s2s needs to use sends2s() but the code
copied from mod_c2s had .send()
-rw-r--r-- | plugins/mod_s2s/mod_s2s.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_s2s/mod_s2s.lua b/plugins/mod_s2s/mod_s2s.lua index 4fce20eb..8e398f56 100644 --- a/plugins/mod_s2s/mod_s2s.lua +++ b/plugins/mod_s2s/mod_s2s.lua @@ -165,7 +165,7 @@ end local function keepalive(event) local session = event.session; if not session.notopen then - return event.session.send(' '); + return event.session.sends2s(' '); end end |