mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-03 04:57:38 +03:00
fix(posts): manually sort by flags
This commit is contained in:
parent
f44638a2cb
commit
4ccf7290f6
1 changed files with 9 additions and 0 deletions
|
@ -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()))
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue