re-add parans

pull/1624/head
Jeff Becker 3 years ago
parent 0826a557d6
commit f955bec5da
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -27,7 +27,7 @@ namespace llarp
const auto lastUsed = std::max(lastSend, lastRecv);
if (lastUsed == 0s)
return intro.IsExpired(now);
return now > lastUsed && now - lastUsed > lifetime;
return now >= lastUsed && (now - lastUsed > lifetime);
}
void

Loading…
Cancel
Save