mod_csi_simple: Detach cleanly from sessions if unloaded while flushing

Since it changes the state to "flushing" while doing just that.
Attempting to remove the filters from a session that does not have them
should be a safe noop.
This commit is contained in:
Kim Alvefur 2021-11-16 16:03:23 +01:00
parent 820eabbed6
commit 6289a2f29d

View file

@ -214,7 +214,7 @@ end
function module.unload()
for _, user_session in pairs(prosody.hosts[module.host].sessions) do
for _, session in pairs(user_session.sessions) do
if session.state == "inactive" then
if session.state and session.state ~= "active" then
disable_optimizations(session);
end
end