commit ba359c95c2f257249b8a68612d23292a62cd0673
parent e0ed122951b6203246fa4499e55ffb31019e667e
Author: kernelkind <kernelkind@gmail.com>
Date: Mon, 8 Sep 2025 16:06:27 -0400
allow reposts in "Notes" timeline tab
Signed-off-by: kernelkind <kernelkind@gmail.com>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/crates/notedeck_columns/src/timeline/mod.rs b/crates/notedeck_columns/src/timeline/mod.rs
@@ -63,7 +63,7 @@ impl ViewFilter {
}
pub fn filter_notes(cache: &CachedNote, note: &Note) -> bool {
- !cache.reply.borrow(note.tags()).is_reply()
+ note.kind() == 6 || !cache.reply.borrow(note.tags()).is_reply()
}
fn identity(_cache: &CachedNote, _note: &Note) -> bool {