This commit is contained in:
cupcakearmy 2021-05-08 21:47:08 +02:00
parent 22b1c35b3e
commit 4852804581
No known key found for this signature in database
GPG Key ID: D28129AE5654D9D9
1 changed files with 4 additions and 3 deletions

View File

@ -56,7 +56,8 @@ async fn create(note: web::Json<Note>) -> impl Responder {
if e > 360 { if e > 360 {
return bad_req; return bad_req;
} }
n.expiration = Some(now() + (e * 60)) let expiration = now() + (e * 60);
n.expiration = Some(expiration);
} }
_ => {} _ => {}
} }
@ -89,8 +90,8 @@ async fn delete(path: web::Path<NotePath>) -> impl Responder {
} }
match changed.expiration { match changed.expiration {
Some(e) => { Some(e) => {
if e > now() { store::del(&p.id.clone());
store::del(&p.id.clone()); if e < now() {
return HttpResponse::BadRequest().finish(); return HttpResponse::BadRequest().finish();
} }
} }