mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
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()
This commit is contained in:
parent
b501b46962
commit
a0b5b349a6
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue