From e06eac8182d44c3465b656cc704b4e7756f999c2 Mon Sep 17 00:00:00 2001 From: mathieui Date: Sun, 11 Aug 2013 23:32:44 +0200 Subject: Mark OTR messages as private (as in carbons) --- plugins/otr.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) -- cgit v1.2.3