diff --git a/CHANGELOG.md b/CHANGELOG.md index df7324a1..c317352d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ ### Changed - Bump Rust to nightly 2022-01-26 (#1015) +- Remove "Latest articles" timeline (#1069) +- Change order of timeline tabs (#1069, #1070) ### Fixed diff --git a/plume-models/src/timeline/mod.rs b/plume-models/src/timeline/mod.rs index 8f80310c..e1f4c2e2 100644 --- a/plume-models/src/timeline/mod.rs +++ b/plume-models/src/timeline/mod.rs @@ -91,7 +91,7 @@ impl Timeline { if t1.user_id.is_some() && t2.user_id.is_none() { Ordering::Less } else { - Ordering::Equal + t1.id.cmp(&t2.id) } }); timelines