diff --git a/src/slack/monitor/message-handler/dispatch.ts b/src/slack/monitor/message-handler/dispatch.ts index 4d8d54cd52e..60ac362ddcf 100644 --- a/src/slack/monitor/message-handler/dispatch.ts +++ b/src/slack/monitor/message-handler/dispatch.ts @@ -138,11 +138,13 @@ export async function dispatchPreparedSlackMessage(prepared: PreparedSlackMessag // Slack native text streaming state // ----------------------------------------------------------------------- const streamingEnabled = account.config.streaming === true; - const replyThreadTs = replyPlan.nextThreadTs(); + + // Peek at the thread target without consuming it (for streaming check only). + const streamThreadHint = incomingThreadTs ?? statusThreadTs; const useStreaming = shouldUseStreaming({ streamingEnabled, - threadTs: replyThreadTs ?? incomingThreadTs ?? statusThreadTs, + threadTs: streamThreadHint, }); let streamSession: SlackStreamSession | null = null;