Skip to content

Commit a78c40b

Browse files
committed
Fix a bug in retrieving full conversation
1 parent e13a8d9 commit a78c40b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -308,8 +308,8 @@ func acceptedEvent(event nostr.Event) bool {
308308

309309
func fetchConversation(event nostr.Event) {
310310
rootReference := nip10.GetThreadRoot(event.Tags)
311-
if rootReference == nil || // It's not a reply
312-
rootNotesList.Include(rootReference.Value()) { // It's archived
311+
fmt.Println("fetchConversation - rootReference:", rootReference)
312+
if rootReference == nil { // It's not a reply
313313
return // We don't need the full conversation
314314
}
315315

0 commit comments

Comments
 (0)