mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_smacks: Add type field to results so actions can be later distinguished
This commit is contained in:
parent
5eef82fdcf
commit
a061b11f32
1 changed files with 2 additions and 1 deletions
|
@ -329,6 +329,7 @@ function do_enable(session, stanza)
|
|||
end
|
||||
|
||||
return {
|
||||
type = "enabled";
|
||||
id = resume_token;
|
||||
resume_max = resume_token and tostring(resume_timeout) or nil;
|
||||
session = session;
|
||||
|
@ -337,7 +338,6 @@ function do_enable(session, stanza)
|
|||
|
||||
track_session(session, resume_token);
|
||||
wrap_session(session, false);
|
||||
|
||||
end;
|
||||
};
|
||||
end
|
||||
|
@ -613,6 +613,7 @@ function do_resume(session, stanza)
|
|||
sessionmanager.update_session(original_session, session);
|
||||
|
||||
return {
|
||||
type = "resumed";
|
||||
session = original_session;
|
||||
id = id;
|
||||
-- Return function to complete the resumption and resync unacked stanzas
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue