From 98994a69264f0063d1d135fe4e2fc872ed5322f5 Mon Sep 17 00:00:00 2001 From: Jon Staab Date: Thu, 29 Feb 2024 10:28:38 -0800 Subject: [PATCH] Fix replies not going through --- src/app/shared/NoteReply.svelte | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/shared/NoteReply.svelte b/src/app/shared/NoteReply.svelte index d2f3b74d..7057ad76 100644 --- a/src/app/shared/NoteReply.svelte +++ b/src/app/shared/NoteReply.svelte @@ -17,6 +17,7 @@ uniqTags, writable, publishToZeroOrMoreGroups, + selectHintsWithFallback, tagsFromContent, getClientTags, getReplyTags, @@ -43,7 +44,7 @@ let opts = { warning: "", groups: parent.wrap ? Tags.from(parent).circles().all() : [], - relays: getPublishHints(parent), + relays: selectHintsWithFallback(getPublishHints(parent)), anonymous: false, }