mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_s2s: Simplify conditionals since all sessions should have .host now
This commit is contained in:
parent
de4b0b6de2
commit
a018497a27
2 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue