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 | 78ad877afb122c40bfe55ff16cd0822448506dee (patch) | |
tree | 068b3ba4288124b315c83540776b01e42564cb3f /plugins | |
parent | c92477c3c8d074c0b1d26ad5730ac0418472f97d (diff) | |
download | prosody-78ad877afb122c40bfe55ff16cd0822448506dee.tar.gz prosody-78ad877afb122c40bfe55ff16cd0822448506dee.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')
-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')) ; |