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:
parent
cb4b3f74b5
commit
4a7c8eb91b
@ -337,6 +337,7 @@ export const slackPlugin: ChannelPlugin<ResolvedSlackAccount> = {
|
|||||||
limit,
|
limit,
|
||||||
before: readStringParam(params, "before"),
|
before: readStringParam(params, "before"),
|
||||||
after: readStringParam(params, "after"),
|
after: readStringParam(params, "after"),
|
||||||
|
threadId: readStringParam(params, "threadId"),
|
||||||
accountId: accountId ?? undefined,
|
accountId: accountId ?? undefined,
|
||||||
},
|
},
|
||||||
cfg,
|
cfg,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user