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 | 659122537866e289e4fd7b45afb99493ad0883b8 (patch) | |
tree | 068b3ba4288124b315c83540776b01e42564cb3f | |
parent | 781fe0e9e6513bb7c5772d68b3630b7da01fb4de (diff) | |
download | prosody-659122537866e289e4fd7b45afb99493ad0883b8.tar.gz prosody-659122537866e289e4fd7b45afb99493ad0883b8.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
-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')) ; |