mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 02:11:23 +00:00
fix(discord): pass silent flag through plugin action handler
The Discord send action was going through the plugin handler path which wasn't passing the silent flag to sendMessageDiscord. - Add silent param reading in handle-action.ts - Pass silent to handleDiscordAction - Add silent param in discord-actions-messaging.ts sendMessage case
This commit is contained in:
@@ -236,6 +236,7 @@ export async function handleDiscordMessagingAction(
|
||||
const mediaUrl = readStringParam(params, "mediaUrl");
|
||||
const replyTo = readStringParam(params, "replyTo");
|
||||
const asVoice = params.asVoice === true;
|
||||
const silent = params.silent === true;
|
||||
const embeds =
|
||||
Array.isArray(params.embeds) && params.embeds.length > 0 ? params.embeds : undefined;
|
||||
|
||||
@@ -266,6 +267,7 @@ export async function handleDiscordMessagingAction(
|
||||
mediaUrl,
|
||||
replyTo,
|
||||
embeds,
|
||||
silent,
|
||||
});
|
||||
return jsonResult({ ok: true, result });
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user