Changeset

8578:cf10cd3eb728

MUC: send muc#stanza_id feature as per XEP-0045 v1.31 (fixes #1097)
author Jonas Wielicki <jonas@wielicki.name>
date Thu, 08 Mar 2018 17:36:36 +0100
parents 8577:75d5eee6fcdf
children 8580:b23da88b3507
files plugins/muc/muc.lib.lua
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/muc/muc.lib.lua	Wed Mar 07 15:05:20 2018 +0100
+++ b/plugins/muc/muc.lib.lua	Thu Mar 08 17:36:36 2018 +0100
@@ -213,6 +213,7 @@
 	local reply = st.reply(stanza):query("http://jabber.org/protocol/disco#info")
 		:tag("identity", {category="conference", type="text", name=self:get_name()}):up()
 		:tag("feature", {var="http://jabber.org/protocol/muc"}):up()
+		:tag("feature", {var="http://jabber.org/protocol/muc#stable_id"}):up()
 		:tag("feature", {var=self:get_password() and "muc_passwordprotected" or "muc_unsecured"}):up()
 		:tag("feature", {var=self:get_moderated() and "muc_moderated" or "muc_unmoderated"}):up()
 		:tag("feature", {var=self:get_members_only() and "muc_membersonly" or "muc_open"}):up()