mod_s2s: Simplify conditionals since all sessions should have .host now

This commit is contained in:
Kim Alvefur 2022-08-26 19:10:15 +02:00
parent de4b0b6de2
commit a018497a27
2 changed files with 3 additions and 3 deletions

View file

@ -275,7 +275,7 @@ function module.add_host(module)
function module.unload()
if module.reloading then return end
for _, session in pairs(sessions) do
if session.to_host == module.host or session.from_host == module.host then
if session.host == module.host then
session:close("host-gone");
end
end