Skip to content

Commit b37b7ec

Browse files
committed
Fix the ping plugin
1 parent 97486ac commit b37b7ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/ping.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def command_ping(self, arg):
1818
return
1919
jid = JID(arg)
2020
try:
21-
delay = self.core.xmpp.plugin['xep_0199'].send_ping(jid=jid, block=False)
21+
delay = self.core.xmpp.plugin['xep_0199'].send_ping(jid=jid)
2222
except:
2323
delay = None
2424
if delay is not None:

0 commit comments

Comments
 (0)