diff options
author | mathieui <mathieui@mathieui.net> | 2012-02-14 02:43:00 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-02-14 02:43:00 +0100 |
commit | b489b68e209d578c92e84d21940ceed2fb75ee65 (patch) | |
tree | ff0dc05e06ac166cc3a61feb4f85b7cd59e5f9ee /plugins | |
parent | 560390793d29728ea96e1a547424a28098dcb610 (diff) | |
download | poezio-b489b68e209d578c92e84d21940ceed2fb75ee65.tar.gz poezio-b489b68e209d578c92e84d21940ceed2fb75ee65.tar.bz2 poezio-b489b68e209d578c92e84d21940ceed2fb75ee65.tar.xz poezio-b489b68e209d578c92e84d21940ceed2fb75ee65.zip |
Fixes #2326
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/ping.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ping.py b/plugins/ping.py index 349b7f52..51198d39 100644 --- a/plugins/ping.py +++ b/plugins/ping.py @@ -18,7 +18,7 @@ class Plugin(BasePlugin): return jid = JID(arg) try: - delay = self.core.xmpp.plugin['xep_0199'].send_ping(jid=jid) + delay = self.core.xmpp.plugin['xep_0199'].send_ping(jid=jid, block=False) except: delay = None if delay is not None: |