diff --git a/llarp/service/session.cpp b/llarp/service/session.cpp index b0ab3b73b..8bce8f7eb 100644 --- a/llarp/service/session.cpp +++ b/llarp/service/session.cpp @@ -19,9 +19,8 @@ namespace llarp Session::IsExpired(llarp_time_t now, llarp_time_t lifetime) const { if(now <= lastUsed) - return intro.IsExpired(now) || replyIntro.IsExpired(now); - return now - lastUsed > lifetime || intro.IsExpired(now) - || replyIntro.IsExpired(now); + return intro.IsExpired(now); + return now - lastUsed > lifetime || intro.IsExpired(now); } } // namespace service