From 07b24c9858560ad2964412588fdc5f13528662c5 Mon Sep 17 00:00:00 2001 From: Matthew Esposito Date: Sat, 29 Jun 2024 13:24:09 -0400 Subject: [PATCH] fix(posts): shorten sort call --- src/utils.rs | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/utils.rs b/src/utils.rs index a72eb67..52f81a3 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -424,15 +424,7 @@ impl Post { }); } posts.sort_by(|a, b| b.created_ts.cmp(&a.created_ts)); - posts.sort_by(|a, b| { - if a.flags.stickied && !b.flags.stickied { - return std::cmp::Ordering::Less; - } - if !a.flags.stickied && b.flags.stickied { - return std::cmp::Ordering::Greater; - } - std::cmp::Ordering::Equal - }); + posts.sort_by(|a, b| b.flags.stickied.cmp(&a.flags.stickied)); Ok((posts, res["data"]["after"].as_str().unwrap_or_default().to_string())) } }