Fix wrong type due to updated lib

See https://github.com/redis-rs/redis-rs/pull/589
This commit is contained in:
Matthieu Guegan 2024-05-16 09:47:01 +02:00
parent e08c9d1871
commit ed3e5f48a0

View File

@ -36,7 +36,7 @@ pub fn set(id: &String, note: &Note) -> Result<(), &'static str> {
match note.expiration { match note.expiration {
Some(e) => { Some(e) => {
let seconds = e - now(); let seconds = e - now();
conn.expire(id, seconds as usize) conn.expire(id, seconds as i64)
.map_err(|_| "Unable to set expiration on notion")? .map_err(|_| "Unable to set expiration on notion")?
} }
None => {} None => {}