diff options
author | Kim Alvefur <zash@zash.se> | 2016-02-03 02:05:49 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-02-03 02:05:49 +0100 |
commit | c2eb4be9a14dec4b4c4fc086f1f6f2bd70991407 (patch) | |
tree | 14b9403c24dc354ae486a161404c596048a9018d /plugins/muc/name.lib.lua | |
parent | 6cb4a340b97827f572c55b87b254352e20e38f4a (diff) | |
download | prosody-c2eb4be9a14dec4b4c4fc086f1f6f2bd70991407.tar.gz prosody-c2eb4be9a14dec4b4c4fc086f1f6f2bd70991407.zip |
MUC: Separate form data from form in disco#info event
Diffstat (limited to 'plugins/muc/name.lib.lua')
-rw-r--r-- | plugins/muc/name.lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/name.lib.lua b/plugins/muc/name.lib.lua index d9bfc4cf..18400e92 100644 --- a/plugins/muc/name.lib.lua +++ b/plugins/muc/name.lib.lua @@ -30,8 +30,8 @@ module:hook("muc-config-form", function(event) name = "muc#roomconfig_roomname"; type = "text-single"; label = "Name"; - value = get_name(event.room) or ""; }); + event.formdata["muc#roomconfig_roomname"] = get_description(event.room) or ""; end); module:hook("muc-config-submitted/muc#roomconfig_roomname", function(event) |