# HG changeset patch # User Matthew Wild # Date 1672330988 0 # Node ID b9577117143973f0a5c617871431bc40d8886884 # Parent 764a4bf2580a752a9f5231d908688ad4ea27ddf0 sessionmanager: Pluck sasl_handler from old session when resuming (fixes #1785) diff -r 764a4bf2580a -r b95771171439 core/sessionmanager.lua --- a/core/sessionmanager.lua Wed Dec 28 02:58:15 2022 +0100 +++ b/core/sessionmanager.lua Thu Dec 29 16:23:08 2022 +0000 @@ -116,6 +116,7 @@ to_session.filter.session = to_session; to_session.filters = from_session.filters; to_session.send.filter = to_session.filter; + to_session.sasl_handler = from_session.sasl_handler; to_session.stream = from_session.stream; to_session.secure = from_session.secure; to_session.hibernating = nil;