sessionmanager: Pluck sasl_handler from old session when resuming (fixes #1785)

This commit is contained in:
Matthew Wild 2022-12-29 16:23:08 +00:00
parent 988990b0b9
commit 51bf5f2d34

View file

@ -116,6 +116,7 @@ local function update_session(to_session, from_session)
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;