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 | db3c36c69df77eee32cc8e4d1e036d3309fc58dd (patch) | |
tree | 714e66039b024d65adf2bc8cdff934cdd9f26121 /plugins/mod_s2s | |
parent | 4bceaa2443543f773ea3231730631b0030f51c5a (diff) | |
download | prosody-db3c36c69df77eee32cc8e4d1e036d3309fc58dd.tar.gz prosody-db3c36c69df77eee32cc8e4d1e036d3309fc58dd.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()
Diffstat (limited to 'plugins/mod_s2s')
-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 |