Skip to content

Commit

Permalink
timeline: show renotes in Notes timelines
Browse files Browse the repository at this point in the history
Changelog-Changed: Show renotes in Notes timeline
Fixes: #676
  • Loading branch information
jb55 committed Aug 7, 2023
1 parent 25e022d commit 21eda28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion damus/ContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 21eda28

Please sign in to comment.