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:
Kim Alvefur 2021-03-03 13:30:19 +01:00
parent 494b53ce0b
commit e789472327

View file

@ -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;