nip22: prevent panic, return nil if not found according to nip10.go

This commit is contained in:
1l0
2025-01-13 14:41:07 +09:00
committed by fiatjaf_
parent 8fb5cd112d
commit cb9e554fc9
4 changed files with 9 additions and 15 deletions

View File

@@ -4,21 +4,24 @@ import "github.com/nbd-wtf/go-nostr"
func GetThreadRoot(tags nostr.Tags) *nostr.Tag {
for _, tag := range tags {
if len(tag) < 2 {
continue
}
if tag[0] == "E" || tag[0] == "A" || tag[0] == "I" {
return &tag
}
}
empty := nostr.Tag{}
return &empty
return nil
}
func GetImmediateReply(tags nostr.Tags) *nostr.Tag {
for _, tag := range tags {
if len(tag) < 2 {
continue
}
if tag[0] == "e" || tag[0] == "a" || tag[0] == "i" {
return &tag
}
}
empty := nostr.Tag{}
return &empty
return nil
}