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:
authorPhilipp Hörist <philipp@hoerist.com>2019-10-14 18:06:06 +0300
committerPhilipp Hörist <philipp@hoerist.com>2019-10-14 18:06:06 +0300
commit8cc2f1d3e7babb442a259d21bad5635345f8466f (patch)
treec3b13bcffd09f06a9a769f6bcfe735ab13158ff8 /nbxmpp/modules
parent22ddb4b89a8bdd94d96c7b4b0688117a2db17e86 (diff)
Add xhtml message attribute
Diffstat (limited to 'nbxmpp/modules')
-rw-r--r--nbxmpp/modules/message.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/nbxmpp/modules/message.py b/nbxmpp/modules/message.py
index 5c18318..27ef286 100644
--- a/nbxmpp/modules/message.py
+++ b/nbxmpp/modules/message.py
@@ -79,6 +79,7 @@ class BaseMessage:
forms = stanza.getTags('x', namespace=NS_DATA)
if forms:
properties.forms = forms
+ properties.xhtml = stanza.getXHTML()
@staticmethod
def _parse_type(stanza):