mod_smacks: Fix to not wait for acks from before a resumption

Otherwise it can get stuck waiting indefinitely for an ack that made it
notice the connection was stale.
This commit is contained in:
Kim Alvefur 2021-12-17 17:20:26 +01:00
parent 4cde54475b
commit 11e5efc23f

View file

@ -590,6 +590,7 @@ function handle_resume(session, stanza, xmlns_sm)
return false;
end
module:fire_event("smacks-hibernation-end", {origin = session, resumed = original_session, queue = queue:table()});
original_session.awaiting_ack = nil; -- Don't wait for acks from before the resumption
request_ack_if_needed(original_session, true, "handle_resume", nil);
end
return true;