* jabber-keepalive.el (jabber-whitespace-ping-do): Ignore errors.

Sometimes this fails because the connection is closed.  Not sure
exactly why this happens, but the sentinel function should discover
the lost connection anyway, and having an error signalled in a timer
function doesn't help anyone.
This commit is contained in:
Magnus Henoch 2013-07-27 19:10:15 +01:00
parent c6c3af7f96
commit c38945c00e
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ accounts."
(defun jabber-whitespace-ping-do ()
(dolist (c jabber-connections)
(jabber-send-string c " ")))
(ignore-errors (jabber-send-string c " "))))
(provide 'jabber-keepalive)