diff options
author | Kim Alvefur <zash@zash.se> | 2016-02-04 09:18:53 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-02-04 09:18:53 +0100 |
commit | 29bc9a1ef2c31c0bda228b0e89bb6dfb2436ca3d (patch) | |
tree | 6d903721403765ab70992035ec87b439b7b76f1e /plugins/muc/description.lib.lua | |
parent | 5df1bf82329e39fda69a296ef372da58268b27cb (diff) | |
download | prosody-29bc9a1ef2c31c0bda228b0e89bb6dfb2436ca3d.tar.gz prosody-29bc9a1ef2c31c0bda228b0e89bb6dfb2436ca3d.zip |
MUC: Roll back parts of 50b9a7e86de9 that were not in the disco#info event
Diffstat (limited to 'plugins/muc/description.lib.lua')
-rw-r--r-- | plugins/muc/description.lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/description.lib.lua b/plugins/muc/description.lib.lua index d94bc3f1..c4b1bd09 100644 --- a/plugins/muc/description.lib.lua +++ b/plugins/muc/description.lib.lua @@ -24,8 +24,8 @@ local function add_form_option(event) name = "muc#roomconfig_roomdesc"; type = "text-single"; label = "Description"; + value = get_description(event.room) or ""; }); - event.formdata["muc#roomconfig_roomdesc"] = get_description(event.room) or ""; end module:hook("muc-disco#info", add_form_option); module:hook("muc-config-form", add_form_option); |