From 742873bde604ddb9778dbeac484422c0bde7663d Mon Sep 17 00:00:00 2001 From: dtonon Date: Wed, 29 May 2024 22:20:49 +0200 Subject: [PATCH] Support a tags in GetImmediateReply --- nip10/nip10.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nip10/nip10.go b/nip10/nip10.go index 8b8e9ad..289c018 100644 --- a/nip10/nip10.go +++ b/nip10/nip10.go @@ -22,7 +22,7 @@ func GetImmediateReply(tags nostr.Tags) *nostr.Tag { if len(tag) < 2 { continue } - if tag[0] != "e" { + if tag[0] != "e" && tag[0] != "a" { continue }