diff options
author | Paul <paul@quakenet.org> | 2013-10-05 17:11:16 +0100 |
---|---|---|
committer | Paul <paul@quakenet.org> | 2013-10-05 17:11:16 +0100 |
commit | 94f5252228eb755833151ecfecb21e36862fb4b9 (patch) | |
tree | 068b3ba4288124b315c83540776b01e42564cb3f /plugins/muc/muc.lib.lua | |
parent | 6b44449fc485962e327eb5595768c99e8525f93d (diff) | |
download | prosody-94f5252228eb755833151ecfecb21e36862fb4b9.tar.gz prosody-94f5252228eb755833151ecfecb21e36862fb4b9.zip |
muc.lib.lua: Fix Spark jabber client not displaying conference room lists, seemingly due to a missing value tag for the room description if the description has not been set
Diffstat (limited to 'plugins/muc/muc.lib.lua')
-rw-r--r-- | plugins/muc/muc.lib.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index 1f725cf7..0dbe81fa 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -225,7 +225,7 @@ function room_mt:get_disco_info(stanza) :tag("feature", {var=self._data.whois ~= "anyone" and "muc_semianonymous" or "muc_nonanonymous"}):up() :add_child(dataform.new({ { name = "FORM_TYPE", type = "hidden", value = "http://jabber.org/protocol/muc#roominfo" }, - { name = "muc#roominfo_description", label = "Description"}, + { name = "muc#roominfo_description", label = "Description", value = "" }, { name = "muc#roominfo_occupants", label = "Number of occupants", value = tostring(count) } }):form({["muc#roominfo_description"] = self:get_description()}, 'result')) ; |