From 2e7875cfefbe4309bc3f26d0dc0473caf4c8ac5c Mon Sep 17 00:00:00 2001 From: Andrea Maria Piana Date: Mon, 11 Jan 2021 16:45:05 +0100 Subject: [PATCH] Fix wrong greater than sign on mailserver connection Signed-off-by: Andrea Maria Piana --- src/status_im/mailserver/core.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/status_im/mailserver/core.cljs b/src/status_im/mailserver/core.cljs index 9e4a61ca8b..e98816fd5d 100644 --- a/src/status_im/mailserver/core.cljs +++ b/src/status_im/mailserver/core.cljs @@ -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)))))