diff --git a/llarp/router/router.cpp b/llarp/router/router.cpp index fe6465cf0..c8275683b 100644 --- a/llarp/router/router.cpp +++ b/llarp/router/router.cpp @@ -1871,11 +1871,8 @@ namespace llarp && !(self->HasSessionTo(other.pubkey) || self->HasPendingConnectJob(other.pubkey))) { - if(!self->IsBootstrapNode(other.pubkey)) - { - if(self->TryConnectAsync(other, 5)) - --want; - } + if(self->TryConnectAsync(other, 5)) + --want; } return want > 0; });