mirror of
https://github.com/matrix-construct/construct
synced 2024-11-26 16:52:44 +01:00
modules/s_keys: Fix regression from c2f86a8094
This commit is contained in:
parent
2ae4c452e2
commit
936ce256da
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ ircd::m::expired(const m::keys &keys)
|
||||||
at<"valid_until_ts"_>(keys)
|
at<"valid_until_ts"_>(keys)
|
||||||
};
|
};
|
||||||
|
|
||||||
return valid_until_ts > ircd::time<milliseconds>();
|
return valid_until_ts < ircd::time<milliseconds>();
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in a new issue