allow reposts in "Notes" timeline tab

Signed-off-by: kernelkind <kernelkind@gmail.com>
This commit is contained in:
kernelkind
2025-09-08 16:06:27 -04:00
parent e0ed122951
commit ba359c95c2

View File

@@ -63,7 +63,7 @@ impl ViewFilter {
} }
pub fn filter_notes(cache: &CachedNote, note: &Note) -> bool { 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 { fn identity(_cache: &CachedNote, _note: &Note) -> bool {