aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/muc/subject.lib.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-06-07 18:53:30 +0200
committerKim Alvefur <zash@zash.se>2018-06-07 18:53:30 +0200
commit44f4fd080610d36a96b8f527aa64d6e64fde7a0b (patch)
tree9e65233487da2cd2eec57e15590202fda13c539a /plugins/muc/subject.lib.lua
parentdeff4bc96dfede198fed7ed07f9d1afbb006571d (diff)
downloadprosody-44f4fd080610d36a96b8f527aa64d6e64fde7a0b.tar.gz
prosody-44f4fd080610d36a96b8f527aa64d6e64fde7a0b.zip
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.
Diffstat (limited to 'plugins/muc/subject.lib.lua')
-rw-r--r--plugins/muc/subject.lib.lua7
1 files changed, 0 insertions, 7 deletions
diff --git a/plugins/muc/subject.lib.lua b/plugins/muc/subject.lib.lua
index b842e777..14091d4e 100644
--- a/plugins/muc/subject.lib.lua
+++ b/plugins/muc/subject.lib.lua
@@ -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);