0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-01-14 00:34:18 +01:00

ircd:Ⓜ️:fed::well_known: Fix expiration condition.

This commit is contained in:
Jason Volk 2020-10-16 13:34:12 -07:00
parent dc388a0f09
commit 676e657368

View file

@ -456,7 +456,7 @@ try
const bool cache_expired
{
req.expires + seconds(cache_max) < now<system_point>()
req.expires < now<system_point>()
};
const bool cache_result