mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_smacks: Initialize queue before sending <enable>
Setting the .smacks field enables code paths that expects the queue to be present. The queue is initialized in wrap_session_out(). With opportunistic writes enabled this happens immediately on .sends2s(), so the sending <enable> must happen before OR after these two lines, not in the middle.
This commit is contained in:
parent
54d1ff8cfd
commit
18baeca54a
1 changed files with 1 additions and 1 deletions
|
@ -334,8 +334,8 @@ module:hook("s2sout-established", function (event)
|
|||
if not session.smacks_feature then return end
|
||||
|
||||
session.smacks = session.smacks_feature.attr.xmlns;
|
||||
session.sends2s(st.stanza("enable", { xmlns = session.smacks }));
|
||||
wrap_session_out(session, false);
|
||||
session.sends2s(st.stanza("enable", { xmlns = session.smacks }));
|
||||
end);
|
||||
|
||||
function handle_enabled(session, stanza, xmlns_sm) -- luacheck: ignore 212/stanza
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue