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;
|
mod user;
|
||||||
pub use user::{SessionUser, User, Username};
|
pub use user::{SessionUser, User};
|
||||||
|
|
||||||
mod challenge;
|
mod challenge;
|
||||||
pub use challenge::Challenge;
|
pub use challenge::Challenge;
|
||||||
|
|
|
@ -45,7 +45,7 @@ impl LegacySubmission {
|
||||||
.next()?
|
.next()?
|
||||||
// Get last number
|
// Get last number
|
||||||
.split('-')
|
.split('-')
|
||||||
.last()?
|
.next_back()?
|
||||||
.parse()
|
.parse()
|
||||||
.ok()
|
.ok()
|
||||||
// Check if discriminator or timestamp, then convert
|
// Check if discriminator or timestamp, then convert
|
||||||
|
|
|
@ -169,7 +169,7 @@ impl SessionUser {
|
||||||
.get(TOKEN_EXPIRE_COOKIE)
|
.get(TOKEN_EXPIRE_COOKIE)
|
||||||
.map(|expire| expire.value().parse::<i64>())
|
.map(|expire| expire.value().parse::<i64>())
|
||||||
.and_then(Result::ok)
|
.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(TOKEN_COOKIE));
|
||||||
cookies.remove_private(Cookie::named(USER_ID_COOKIE));
|
cookies.remove_private(Cookie::named(USER_ID_COOKIE));
|
||||||
|
|
Loading…
Add table
Reference in a new issue