mod_csi_simple: Always remove session filters when disabling CSI

Only guard the actual pausing of outgoing data on the method existing.
This prevents the filters from lingering in case something happened to
the connection. Removing already removed filters should be a safe noop.
This commit is contained in:
Kim Alvefur 2019-10-05 16:55:58 +02:00
parent 1356b90c3a
commit 2e1a43906f

View file

@ -95,10 +95,10 @@ function enable_optimizations(session)
end
function disable_optimizations(session)
if session.conn and session.conn.resume_writes then
session.csi_flushing = nil;
filters.remove_filter(session, "stanzas/out", manage_buffer);
filters.remove_filter(session, "bytes/in", flush_buffer);
if session.conn and session.conn.resume_writes then
session.conn:resume_writes();
end
end