mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_smacks: Set session.smacks after sending <enabled/> to fix traceback
...with opportunistic writes enabled.
This commit is contained in:
parent
03b3b1b9ad
commit
78a197c25d
1 changed files with 1 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue