fix: forward limit param in extension slack emoji-list adapter

This commit is contained in:
Marcus Castro
2026-02-10 14:32:04 -03:00
committed by Peter Steinberger
parent 3224d1a75a
commit 36ec13a593

View File

@@ -427,7 +427,7 @@ export const slackPlugin: ChannelPlugin<ResolvedSlackAccount> = {
if (action === "emoji-list") {
return await getSlackRuntime().channel.slack.handleSlackAction(
{ action: "emojiList", accountId: accountId ?? undefined },
{ action: "emojiList", limit: params.limit, accountId: accountId ?? undefined },
cfg,
);
}