From 69301f1e97bc62bf1686b27e1d9248608d868bfd Mon Sep 17 00:00:00 2001 From: Simon Date: Fri, 6 Jun 2025 08:53:14 +0000 Subject: [PATCH] fixed hanime sort options --- src/api.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/api.rs b/src/api.rs index 15cd01c..9940a5f 100644 --- a/src/api.rs +++ b/src/api.rs @@ -217,6 +217,14 @@ async fn status(req: HttpRequest) -> Result { id: "likes.asc".to_string(), title: "Least Likes".to_string(), }, + FilterOption { + id: "released_at_unix.desc".to_string(), + title: "New".to_string(), + }, + FilterOption { + id: "released_at_unix.asc".to_string(), + title: "Old".to_string(), + }, FilterOption { id: "title_sortable.asc".to_string(), title: "A - Z".to_string(),