Backed out changeset cd186331ab1f (subject in disco#info)

Makes more sense if you must join the room to see the subject, since
there’s a separate public description field.
This commit is contained in:
Kim Alvefur 2018-06-07 18:53:30 +02:00
parent deff4bc96d
commit 44f4fd0806

View file

@ -73,13 +73,6 @@ local function set_subject(room, from, subject)
return true;
end
module:hook("muc-disco#info", function (event)
table.insert(event.form, {
name = "muc#roominfo_subject";
});
event.formdata["muc#roominfo_subject"] = select(2, get_subject(event.room));
end);
-- Send subject to joining user
module:hook("muc-occupant-session-new", function(event)
send_subject(event.room, event.stanza.attr.from);