mod_mam: Advertise extended MAM when archive storage is capable

This commit is contained in:
Kim Alvefur 2021-01-12 19:25:29 +01:00
parent 2d03793897
commit be492e057b
2 changed files with 2 additions and 3 deletions

View file

@ -567,8 +567,7 @@ module:hook("pre-message/full", c2s_message_handler, 0);
module:hook("message/bare", message_handler, 0);
module:hook("message/full", message_handler, 0);
local advertise_extended = module:get_option_boolean("mam_advertise_extend", false);
-- TODO delete feature flag option
local advertise_extended = archive.caps and archive.caps.full_id_range and archive.caps.ids;
module:hook("account-disco-info", function(event)
(event.reply or event.stanza):tag("feature", {var=xmlns_mam}):up();