mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_smacks: Only include max resumption time when resumption is activated
This commit is contained in:
parent
e813cdf91b
commit
afb195c623
1 changed files with 3 additions and 1 deletions
|
@ -255,14 +255,16 @@ function handle_enable(session, stanza, xmlns_sm)
|
|||
|
||||
wrap_session(session, false);
|
||||
|
||||
local resume_max;
|
||||
local resume_token;
|
||||
local resume = stanza.attr.resume;
|
||||
if resume == "true" or resume == "1" then
|
||||
resume_token = uuid_generate();
|
||||
session_registry[jid.join(session.username, session.host, resume_token)] = session;
|
||||
session.resumption_token = resume_token;
|
||||
resume_max = tostring(resume_timeout);
|
||||
end
|
||||
(session.sends2s or session.send)(st.stanza("enabled", { xmlns = xmlns_sm, id = resume_token, resume = resume, max = tostring(resume_timeout) }));
|
||||
(session.sends2s or session.send)(st.stanza("enabled", { xmlns = xmlns_sm, id = resume_token, resume = resume, max = resume_max }));
|
||||
return true;
|
||||
end
|
||||
module:hook_tag(xmlns_sm2, "enable", function (session, stanza) return handle_enable(session, stanza, xmlns_sm2); end, 100);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue