mod_smacks: Add type field to results so actions can be later distinguished

This commit is contained in:
Matthew Wild 2022-09-03 21:20:07 +01:00
parent 5eef82fdcf
commit a061b11f32

View file

@ -329,6 +329,7 @@ function do_enable(session, stanza)
end end
return { return {
type = "enabled";
id = resume_token; id = resume_token;
resume_max = resume_token and tostring(resume_timeout) or nil; resume_max = resume_token and tostring(resume_timeout) or nil;
session = session; session = session;
@ -337,7 +338,6 @@ function do_enable(session, stanza)
track_session(session, resume_token); track_session(session, resume_token);
wrap_session(session, false); wrap_session(session, false);
end; end;
}; };
end end
@ -613,6 +613,7 @@ function do_resume(session, stanza)
sessionmanager.update_session(original_session, session); sessionmanager.update_session(original_session, session);
return { return {
type = "resumed";
session = original_session; session = original_session;
id = id; id = id;
-- Return function to complete the resumption and resync unacked stanzas -- Return function to complete the resumption and resync unacked stanzas