From eecb7bf966e7c79cf00e2ecd44218dc656ca9de4 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Fri, 8 May 2026 08:06:55 +1000 Subject: [PATCH] sendToGroup: Ensure endorsements are fetched with alreadyInQueue=true --- ts/util/sendToGroup.preload.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ts/util/sendToGroup.preload.ts b/ts/util/sendToGroup.preload.ts index 2b88f576a7..c43ce93729 100644 --- a/ts/util/sendToGroup.preload.ts +++ b/ts/util/sendToGroup.preload.ts @@ -365,10 +365,12 @@ async function sendToGroupViaSenderKey( let groupSendEndorsementState: GroupSendEndorsementState | null = null; if (groupId != null && !story) { + const alreadyInQueue = true; const { state, didRefreshGroupState } = await maybeCreateGroupSendEndorsementState( groupId, - recursion.didRefreshGroupState + recursion.didRefreshGroupState, + alreadyInQueue ); if (state != null) { groupSendEndorsementState = state;