summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2015-01-03 17:33:59 +0100
committermathieui <mathieui@mathieui.net>2015-01-03 17:33:59 +0100
commit1133d411cd3fe9ad5e078ea80aa6fcb7a2e6009a (patch)
treeeb80111cc08581f1bec59e24e97ed267c1e13bb8 /plugins
parent44ff71b3a3d79639cb3bc5c592d3d4580bb9ad01 (diff)
downloadpoezio-1133d411cd3fe9ad5e078ea80aa6fcb7a2e6009a.tar.gz
poezio-1133d411cd3fe9ad5e078ea80aa6fcb7a2e6009a.tar.bz2
poezio-1133d411cd3fe9ad5e078ea80aa6fcb7a2e6009a.tar.xz
poezio-1133d411cd3fe9ad5e078ea80aa6fcb7a2e6009a.zip
Fix #2523 (interoperability with jitsi)
Disable fragmentation entirely
Diffstat (limited to 'plugins')
-rw-r--r--plugins/otr.py4
1 files changed, 2 insertions, 2 deletions
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):