cargo clippy --fix

This commit is contained in:
Elnu 2025-03-27 11:40:18 -07:00
parent 2689f9ac0d
commit 24512469e9
3 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
mod user;
pub use user::{SessionUser, User, Username};
pub use user::{SessionUser, User};
mod challenge;
pub use challenge::Challenge;

View file

@ -45,7 +45,7 @@ impl LegacySubmission {
.next()?
// Get last number
.split('-')
.last()?
.next_back()?
.parse()
.ok()
// Check if discriminator or timestamp, then convert

View file

@ -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));