diff --git a/llarp/exit/session.cpp b/llarp/exit/session.cpp index 1883fcafc..efa5206c9 100644 --- a/llarp/exit/session.cpp +++ b/llarp/exit/session.cpp @@ -253,7 +253,7 @@ namespace llarp bool BaseSession::IsExpired(llarp_time_t now) const { - return m_LastUse && now > m_LastUse && now - m_LastUse > LifeSpan; + return now > m_LastUse && now - m_LastUse > LifeSpan; } bool