notes: generalize event_is_reply a bit

so that it works with NdbNote as well
This commit is contained in:
William Casarin
2023-07-24 12:39:41 -07:00
parent 6fa9149939
commit b5dd90b36a
5 changed files with 6 additions and 6 deletions

View File

@@ -146,8 +146,8 @@ func interpret_event_refs(blocks: [Block], tags: [[String]]) -> [EventRef] {
}
func event_is_reply(_ ev: NostrEvent, privkey: String?) -> Bool {
return ev.event_refs(privkey).contains { evref in
func event_is_reply(_ refs: [EventRef]) -> Bool {
return refs.contains { evref in
return evref.is_reply != nil
}
}