mod_smacks: Set session.smacks after sending <enabled/> to fix traceback

...with opportunistic writes enabled.
This commit is contained in:
Matthew Wild 2022-08-29 15:58:51 +01:00
parent 03b3b1b9ad
commit 78a197c25d

View file

@ -349,8 +349,6 @@ function handle_enable(session, stanza, xmlns_sm)
return true;
end
session.smacks = xmlns_sm;
(session.sends2s or session.send)(st.stanza("enabled", {
xmlns = xmlns_sm;
id = enabled.id;
@ -358,6 +356,7 @@ function handle_enable(session, stanza, xmlns_sm)
max = enabled.resume_max;
}));
session.smacks = xmlns_sm;
enabled.finish();
return true;