From 4ccf7290f6e58ca1216c027d9f05c89f6b2fcc43 Mon Sep 17 00:00:00 2001 From: Matthew Esposito Date: Sat, 29 Jun 2024 13:22:54 -0400 Subject: [PATCH] fix(posts): manually sort by flags --- src/utils.rs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/utils.rs b/src/utils.rs index 52c66d1..a72eb67 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -424,6 +424,15 @@ 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 + }); Ok((posts, res["data"]["after"].as_str().unwrap_or_default().to_string())) } }