damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit 21eda288c4a69828f500bb3f7a6843ea19f03660
parent 25e022d93314425dcd8c141823598cb4f95429f8
Author: William Casarin <jb55@jb55.com>
Date:   Mon,  7 Aug 2023 08:24:02 -0700

timeline: show renotes in Notes timelines

Changelog-Changed: Show renotes in Notes timeline
Fixes: https://github.com/damus-io/damus/issues/676

Diffstat:
Mdamus/ContentView.swift | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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 }