diff options
author | Georg Lukas <georg@op-co.de> | 2015-06-01 13:00:39 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2015-07-21 19:43:21 +0200 |
commit | 304801ebe06036b682b4dba65470764eb8973f33 (patch) | |
tree | 4f024706cccf6280b1d26298656becbda07da04e /src/tabs | |
parent | a3cefc7af34eb7ef2ad31cc153a627253b027ad0 (diff) | |
download | poezio-304801ebe06036b682b4dba65470764eb8973f33.tar.gz poezio-304801ebe06036b682b4dba65470764eb8973f33.tar.bz2 poezio-304801ebe06036b682b4dba65470764eb8973f33.tar.xz poezio-304801ebe06036b682b4dba65470764eb8973f33.zip |
self-ping: increase timeout to 60s
Diffstat (limited to 'src/tabs')
-rw-r--r-- | src/tabs/muctab.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabs/muctab.py b/src/tabs/muctab.py index adc85a5b..bb60d2c7 100644 --- a/src/tabs/muctab.py +++ b/src/tabs/muctab.py @@ -1690,7 +1690,7 @@ class MucTab(ChatTab): self.core.xmpp.plugin['xep_0199'].send_ping(jid=to, callback=self.on_self_ping_result, timeout_callback=self.on_self_ping_failed, - timeout=10) + timeout=60) def on_self_ping_result(self, iq): if iq["type"] == "error": |