mod_smacks: Ensure hibernating session is not connected

Turns out that if you destroy a session from inside prosody, it goes
into hibernation but stays connected and continues processing stanzas.
This commit is contained in:
Kim Alvefur 2021-12-02 03:03:44 +01:00
parent d34e453ec3
commit 9f3feb39f9

View file

@ -514,6 +514,9 @@ module:hook("pre-resource-unbind", function (event)
session.log("debug", "Session resumed before hibernation timeout, all is well")
end
end);
if session.conn then
session.conn:close();
end
return true; -- Postpone destruction for now
end
end