fix: honor send path/filePath inputs (#1444) (thanks @hopyky)

This commit is contained in:
Peter Steinberger
2026-01-23 02:10:05 +00:00
parent 59a8eecd7e
commit 837749dced
4 changed files with 60 additions and 10 deletions

View File

@@ -343,7 +343,7 @@ async function hydrateSendAttachmentParams(params: {
action: ChannelMessageActionName;
dryRun?: boolean;
}): Promise<void> {
if (params.action !== "sendAttachment" && params.action !== "send") return;
if (params.action !== "sendAttachment") return;
const mediaHint = readStringParam(params.args, "media", { trim: false });
const fileHint =