Fix reply tag bug

This commit is contained in:
Jon Staab 2024-03-07 14:49:57 -08:00
parent 65decbca24
commit 8933e89855

View File

@ -231,7 +231,7 @@ export const getReplyTags = (parent: Event, inherit = false) => {
}
} else {
for (const t of replies.valueOf()) {
replyTags.push(t.slice(0, 2).concat([hints.Event(parent).getUrl(), "reply"]))
replyTags.push(t.slice(0, 2).concat([hints.Event(parent).getUrl(), "root"]))
}
}