fix(slack): pass threadId param in message read action

The Slack channel plugin's read action handler was not forwarding the threadId parameter to handleSlackAction, causing message action=read channel=slack threadId=X to always return channel history instead of thread replies.
This commit is contained in:
Miha 2026-01-29 11:16:15 -06:00 committed by GitHub
parent cb4b3f74b5
commit 4a7c8eb91b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -337,6 +337,7 @@ export const slackPlugin: ChannelPlugin<ResolvedSlackAccount> = {
limit,
before: readStringParam(params, "before"),
after: readStringParam(params, "after"),
threadId: readStringParam(params, "threadId"),
accountId: accountId ?? undefined,
},
cfg,