We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e13a8d9 commit a78c40bCopy full SHA for a78c40b
1 file changed
main.go
@@ -308,8 +308,8 @@ func acceptedEvent(event nostr.Event) bool {
308
309
func fetchConversation(event nostr.Event) {
310
rootReference := nip10.GetThreadRoot(event.Tags)
311
- if rootReference == nil || // It's not a reply
312
- rootNotesList.Include(rootReference.Value()) { // It's archived
+ fmt.Println("fetchConversation - rootReference:", rootReference)
+ if rootReference == nil { // It's not a reply
313
return // We don't need the full conversation
314
}
315
0 commit comments