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

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'gajim/common/structs.py')
-rw-r--r--gajim/common/structs.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/gajim/common/structs.py b/gajim/common/structs.py
index cc25f1d04..7263c4b12 100644
--- a/gajim/common/structs.py
+++ b/gajim/common/structs.py
@@ -31,6 +31,7 @@ from nbxmpp.modules.security_labels import SecurityLabel
from nbxmpp.protocol import JID
from nbxmpp.structs import MucSubject
from nbxmpp.structs import PresenceProperties
+from nbxmpp.structs import ReplyData
from gajim.common import types
from gajim.common.const import KindConstant
@@ -98,6 +99,7 @@ class OutgoingMessage:
control: Any | None = None,
attention: bool | None = None,
correct_id: str | None = None,
+ reply_data: ReplyData | None = None,
oob_url: str | None = None,
xhtml: str | None = None,
nodes: Any | None = None,
@@ -136,6 +138,7 @@ class OutgoingMessage:
self.control = control
self.attention = attention
self.correct_id = correct_id
+ self.reply_data = reply_data
self.oob_url = oob_url