fix: 🐛

This commit is contained in:
codytseng
2025-06-25 11:22:34 +08:00
parent 6c2cd0ff42
commit 30343254bd
2 changed files with 20 additions and 9 deletions

View File

@@ -156,11 +156,18 @@ export default function ReplyNoteList({ index, event }: { index?: number; event:
})
}
} else if (rootInfo.type === 'A') {
filters.push({
'#A': [rootInfo.id],
kinds: [ExtendedKind.COMMENT],
limit: LIMIT
})
filters.push(
{
'#a': [rootInfo.id],
kinds: [kinds.ShortTextNote],
limit: LIMIT
},
{
'#A': [rootInfo.id],
kinds: [ExtendedKind.COMMENT],
limit: LIMIT
}
)
if (rootInfo.relay) {
relayUrls.push(rootInfo.relay)
}