mod_muc_mam: Conditionally advertise MAM feature on rooms (fixes #1407)

This commit is contained in:
Kim Alvefur 2019-08-10 16:01:42 +02:00
parent fabd896892
commit 5976d3fc66

View file

@ -428,7 +428,9 @@ end
module:add_feature(xmlns_mam);
module:hook("muc-disco#info", function(event)
event.reply:tag("feature", {var=xmlns_mam}):up();
if archiving_enabled(event.room) then
event.reply:tag("feature", {var=xmlns_mam}):up();
end
end);
-- Cleanup