cargo clippy --fix
This commit is contained in:
parent
2689f9ac0d
commit
24512469e9
3 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
mod user;
|
||||
pub use user::{SessionUser, User, Username};
|
||||
pub use user::{SessionUser, User};
|
||||
|
||||
mod challenge;
|
||||
pub use challenge::Challenge;
|
||||
|
|
|
@ -45,7 +45,7 @@ impl LegacySubmission {
|
|||
.next()?
|
||||
// Get last number
|
||||
.split('-')
|
||||
.last()?
|
||||
.next_back()?
|
||||
.parse()
|
||||
.ok()
|
||||
// Check if discriminator or timestamp, then convert
|
||||
|
|
|
@ -169,7 +169,7 @@ impl SessionUser {
|
|||
.get(TOKEN_EXPIRE_COOKIE)
|
||||
.map(|expire| expire.value().parse::<i64>())
|
||||
.and_then(Result::ok)
|
||||
.map_or(true, |timestamp| Utc::now().timestamp() >= timestamp)
|
||||
.is_none_or(|timestamp| Utc::now().timestamp() >= timestamp)
|
||||
{
|
||||
cookies.remove_private(Cookie::named(TOKEN_COOKIE));
|
||||
cookies.remove_private(Cookie::named(USER_ID_COOKIE));
|
||||
|
|
Loading…
Add table
Reference in a new issue