cargo clippy --fix
This commit is contained in:
parent
cd34cd721e
commit
04b4240e0f
1 changed files with 1 additions and 2 deletions
|
@ -214,8 +214,7 @@ impl User {
|
||||||
};
|
};
|
||||||
if cookies.get(TOKEN_EXPIRE_COOKIE)
|
if cookies.get(TOKEN_EXPIRE_COOKIE)
|
||||||
.map(|expire| expire.value().parse::<i64>())
|
.map(|expire| expire.value().parse::<i64>())
|
||||||
.map(Result::ok)
|
.and_then(Result::ok)
|
||||||
.flatten()
|
|
||||||
.map_or(true, |timestamp| Utc::now().timestamp() >= timestamp) {
|
.map_or(true, |timestamp| Utc::now().timestamp() >= timestamp) {
|
||||||
cookies.remove_private(Cookie::named(TOKEN_COOKIE));
|
cookies.remove_private(Cookie::named(TOKEN_COOKIE));
|
||||||
cookies.remove(Cookie::named(TOKEN_EXPIRE_COOKIE));
|
cookies.remove(Cookie::named(TOKEN_EXPIRE_COOKIE));
|
||||||
|
|
Loading…
Add table
Reference in a new issue