From 1133d411cd3fe9ad5e078ea80aa6fcb7a2e6009a Mon Sep 17 00:00:00 2001 From: mathieui Date: Sat, 3 Jan 2015 17:33:59 +0100 Subject: Fix #2523 (interoperability with jitsi) Disable fragmentation entirely --- plugins/otr.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins') diff --git a/plugins/otr.py b/plugins/otr.py index 38817d89..53a32380 100644 --- a/plugins/otr.py +++ b/plugins/otr.py @@ -243,7 +243,7 @@ Then use the command: /otr trust """) OTR_NOT_ENABLED = _('%(jid_c)s%(jid)s%(info)s did not enable ' - 'OTR after %(sec)s seconds.') + 'OTR after %(secs)s seconds.') MESSAGE_NOT_SENT = _('%(info)sYour message to %(jid_c)s%(jid)s%(info)s was' ' not sent because your configuration requires an ' @@ -419,7 +419,7 @@ class PoezioAccount(Account): """ def __init__(self, jid, key_dir): - super(PoezioAccount, self).__init__(jid, 'xmpp', 1024) + super(PoezioAccount, self).__init__(jid, 'xmpp', 0) self.key_dir = os.path.join(key_dir, jid) def load_privkey(self): -- cgit v1.2.3