summaryrefslogtreecommitdiff
path: root/plugins/otr.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/otr.py')
-rw-r--r--plugins/otr.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/otr.py b/plugins/otr.py
index 49b4224d..91c814e9 100644
--- a/plugins/otr.py
+++ b/plugins/otr.py
@@ -199,7 +199,9 @@ class PoezioContext(Context):
return False
def inject(self, msg, appdata=None):
- self.xmpp.send_message(mto=self.peer, mbody=msg.decode('ascii'), mtype='chat')
+ message = self.xmpp.make_message(mto=self.peer, mbody=msg.decode('ascii'), mtype='chat')
+ message.enable('carbon_private')
+ message.send()
def setState(self, newstate):
tab = self.core.get_tab_by_name(self.peer)