From 2a76a3d0814b4eb81ffd341ee4e9ff260f5cbbb0 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Fri, 4 Jun 2021 07:53:28 -0400 Subject: [PATCH] treat ignored paths like established paths when dealing with expiration --- llarp/path/path.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llarp/path/path.cpp b/llarp/path/path.cpp index b11bcf12e..80c107220 100644 --- a/llarp/path/path.cpp +++ b/llarp/path/path.cpp @@ -513,7 +513,7 @@ namespace llarp { return now >= m_LastRecvMessage + PathReanimationTimeout; } - if (_status == ePathEstablished) + if (_status == ePathEstablished or _status == ePathIgnore) { return now >= ExpireTime(); }