Slack: clear ack reaction after streaming replies (#2044)

Co-authored-by: Shaurya Pratap Singh <fancyboi999@users.noreply.github.com>
This commit is contained in:
Shadow
2026-01-25 21:28:46 -06:00
parent 678ad9e3ae
commit 7e4e24445e
2 changed files with 4 additions and 1 deletions

View File

@@ -22,6 +22,7 @@ Status: unreleased.
- TUI: avoid width overflow when rendering selection lists. (#1686) Thanks @mossein. - TUI: avoid width overflow when rendering selection lists. (#1686) Thanks @mossein.
- Telegram: keep topic IDs in restart sentinel notifications. (#1807) Thanks @hsrvc. - Telegram: keep topic IDs in restart sentinel notifications. (#1807) Thanks @hsrvc.
- Config: apply config.env before ${VAR} substitution. (#1813) Thanks @spanishflu-est1918. - Config: apply config.env before ${VAR} substitution. (#1813) Thanks @spanishflu-est1918.
- Slack: clear ack reaction after streamed replies. (#2044) Thanks @fancyboi999.
## 2026.1.24-3 ## 2026.1.24-3

View File

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