mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.session: Fix luacheck warnings
This commit is contained in:
parent
58a6a4b140
commit
5a4948a744
1 changed files with 3 additions and 3 deletions
|
@ -9,13 +9,13 @@ local function new_session(typ)
|
|||
end
|
||||
|
||||
local function set_id(session)
|
||||
local id = typ .. tostring(session):match("%x+$"):lower();
|
||||
local id = session.type .. tostring(session):match("%x+$"):lower();
|
||||
session.id = id;
|
||||
return session;
|
||||
end
|
||||
|
||||
local function set_logger(session)
|
||||
local log = logger.init(id);
|
||||
local log = logger.init(session.id);
|
||||
session.log = log;
|
||||
return session;
|
||||
end
|
||||
|
@ -30,7 +30,7 @@ local function set_send(session)
|
|||
local conn = session.conn;
|
||||
if not conn then
|
||||
function session.send(data)
|
||||
log("debug", "Discarding data sent to unconnected session: %s", tostring(data));
|
||||
session.log("debug", "Discarding data sent to unconnected session: %s", tostring(data));
|
||||
return false;
|
||||
end
|
||||
return session;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue