From 21eda288c4a69828f500bb3f7a6843ea19f03660 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Mon, 7 Aug 2023 08:24:02 -0700 Subject: [PATCH] timeline: show renotes in Notes timelines Changelog-Changed: Show renotes in Notes timeline Fixes: https://github.com/damus-io/damus/issues/676 --- damus/ContentView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/damus/ContentView.swift b/damus/ContentView.swift index 100c0905..d5a60440 100644 --- a/damus/ContentView.swift +++ b/damus/ContentView.swift @@ -60,7 +60,7 @@ enum FilterState : Int { func filter(ev: NostrEvent) -> Bool { switch self { case .posts: - return !ev.is_reply(nil) + return ev.known_kind == .boost || !ev.is_reply(nil) case .posts_and_replies: return true }