mod_muc_mam: Set status code 170/171 on archiving configuration change

This commit is contained in:
Kim Alvefur 2018-05-29 04:24:43 +02:00
parent 72104f7f69
commit 6ec6095d77

View file

@ -83,6 +83,7 @@ if not log_all_rooms then
module:hook("muc-config-submitted/"..muc_form_enable, function(event)
event.room._data.archiving = event.value;
event.status_codes[event.value and "170" or "171"] = true;
end);
end