mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
core: Split some very long lines [luacheck]
This commit is contained in:
parent
140c6de026
commit
1ecc3a7918
8 changed files with 35 additions and 16 deletions
|
@ -70,7 +70,9 @@ end
|
|||
|
||||
local function destroy_session(session, reason)
|
||||
if session.destroyed then return; end
|
||||
(session.log or log)("debug", "Destroying "..tostring(session.direction).." session "..tostring(session.from_host).."->"..tostring(session.to_host)..(reason and (": "..reason) or ""));
|
||||
(session.log or log)("debug", "Destroying "..tostring(session.direction)
|
||||
.." session "..tostring(session.from_host).."->"..tostring(session.to_host)
|
||||
..(reason and (": "..reason) or ""));
|
||||
|
||||
if session.direction == "outgoing" then
|
||||
hosts[session.from_host].s2sout[session.to_host] = nil;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue