diff --git a/src/utils/db.rs b/src/utils/db.rs index 78bc7bf..315f937 100644 --- a/src/utils/db.rs +++ b/src/utils/db.rs @@ -27,7 +27,11 @@ pub fn get_clip( clips .filter(code.eq(clip_code)) - .filter(expires_at.is_null().or(expires_at.gt(chrono::Local::now().naive_local()))) + .filter( + expires_at + .is_null() + .or(expires_at.gt(chrono::Local::now().naive_local())), + ) .first::(connection) .optional() }