fix(slack): enforce replyToMode for auto-thread_ts and inline reply tags (#23839)

* Slack: respect replyToMode for auto-thread_ts and inline reply tags

* Update CHANGELOG.md
This commit is contained in:
Vincent Koc
2026-02-22 14:36:46 -05:00
committed by GitHub
parent 9f7c1686b4
commit 71c2c59c6c
6 changed files with 62 additions and 17 deletions

View File

@@ -103,7 +103,6 @@ export async function dispatchPreparedSlackMessage(prepared: PreparedSlackMessag
incomingThreadTs,
messageTs,
hasRepliedRef,
chatType: prepared.isDirectMessage ? "direct" : "channel",
isThreadReply,
});
@@ -187,6 +186,7 @@ export async function dispatchPreparedSlackMessage(prepared: PreparedSlackMessag
runtime,
textLimit: ctx.textLimit,
replyThreadTs,
replyToMode: ctx.replyToMode,
});
replyPlan.markSent();
};