fix(slack): remove ack reaction when block streaming replies are sent (#2003)

This commit is contained in:
fancy 2026-01-26 11:14:38 +08:00
parent a989fe8af9
commit 3957ed131a

View File

@ -141,7 +141,9 @@ export async function dispatchPreparedSlackMessage(prepared: PreparedSlackMessag
});
markDispatchIdle();
if (!queuedFinal) {
const anyReplyDelivered = queuedFinal || (counts.block ?? 0) > 0 || (counts.final ?? 0) > 0;
if (!anyReplyDelivered) {
if (prepared.isRoomish) {
clearHistoryEntriesIfEnabled({
historyMap: ctx.channelHistories,