Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/python-nbxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'nbxmpp/structs.py')
-rw-r--r--nbxmpp/structs.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/nbxmpp/structs.py b/nbxmpp/structs.py
index a673932..5c50911 100644
--- a/nbxmpp/structs.py
+++ b/nbxmpp/structs.py
@@ -566,7 +566,9 @@ class DiscoInfo(NamedTuple):
def muc_subjectmod(self) -> Optional[Any]:
# muc#roominfo_changesubject stems from a wrong example in the MUC XEP
# Ejabberd and Prosody use this value
+ # muc#roomconfig_changesubject is also used by Prosody
return (self.get_field_value(Namespace.MUC_INFO, 'muc#roominfo_subjectmod') or
+ self.get_field_value(Namespace.MUC_INFO, 'muc#roomconfig_changesubject') or
self.get_field_value(Namespace.MUC_INFO, 'muc#roominfo_changesubject'))
@property