diff --git a/libi2pd/NetDb.cpp b/libi2pd/NetDb.cpp index 65ade555..c60fb7bc 100644 --- a/libi2pd/NetDb.cpp +++ b/libi2pd/NetDb.cpp @@ -1165,6 +1165,7 @@ namespace data return !router->IsHidden () && router != compatibleWith && (reverse ? (compatibleWith->IsReachableFrom (*router) && router->GetCompatibleTransports (true)): router->IsReachableFrom (*compatibleWith)) && !router->IsNAT2NATOnly (*compatibleWith) && + router->GetVersion () >= NETDB_MIN_ALLOWED_VERSION && router->IsECIES () && !router->IsHighCongestion (clientTunnel) && (!i2p::transport::transports.IsCheckReserved () || !router->IsSameSubnet (*compatibleWith)) && (!checkIsReal || router->GetProfile ()->IsReal ()) &&