mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
core.s2smanager: Set "direction" on destroyed sessions (fixes #1641)
Should prevent errors in certain places where it logs session.direction captialized using gsub. Might cause bugs tho, but then the session is destroyed so maybe it doesn't matter?
This commit is contained in:
parent
494b53ce0b
commit
e789472327
1 changed files with 1 additions and 0 deletions
|
@ -55,6 +55,7 @@ end
|
|||
local resting_session = { -- Resting, not dead
|
||||
destroyed = true;
|
||||
type = "s2s_destroyed";
|
||||
direction = "destroyed";
|
||||
open_stream = function (session)
|
||||
session.log("debug", "Attempt to open stream on resting session");
|
||||
end;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue