Fix wrong greater than sign on mailserver connection
Signed-off-by: Andrea Maria Piana <andrea.maria.piana@gmail.com>
This commit is contained in:
parent
d6f2792622
commit
2e7875cfef
|
@ -614,7 +614,7 @@
|
|||
;; We either never tried to connect to this peer
|
||||
(or (nil? last-connection-attempt)
|
||||
;; Or 30 seconds have passed and no luck
|
||||
(<= (- now last-connection-attempt) (* constants/connection-timeout 3))))
|
||||
(>= (- now last-connection-attempt) (* constants/connection-timeout 3))))
|
||||
;; Then we change mailserver
|
||||
(change-mailserver cofx)))))
|
||||
|
||||
|
|
Loading…
Reference in New Issue