mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
sessionmanager: Make session.send() return true unless there really is an error [backported from 0.10]
This commit is contained in:
parent
843d6bb629
commit
451855fecb
1 changed files with 7 additions and 1 deletions
|
@ -37,9 +37,15 @@ function new_session(conn)
|
|||
if t then
|
||||
t = filter("bytes/out", tostring(t));
|
||||
if t then
|
||||
return w(conn, t);
|
||||
local ret, err = w(conn, t);
|
||||
if not ret then
|
||||
session.log("debug", "Write-error: %s", tostring(err));
|
||||
return false;
|
||||
end
|
||||
return true;
|
||||
end
|
||||
end
|
||||
return true;
|
||||
end
|
||||
session.ip = conn:ip();
|
||||
local conn_name = "c2s"..tostring(session):match("[a-f0-9]+$");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue