mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
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:
parent
1356b90c3a
commit
2e1a43906f
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue