We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e20ab59 commit 693fb7eCopy full SHA for 693fb7e
1 file changed
packages/cli/src/webhooks/webhook-helpers.ts
@@ -219,7 +219,7 @@ export async function executeWebhook(
219
const form = formidable({
220
multiples: true,
221
encoding: encoding as formidable.BufferEncoding,
222
- maxFileSize: formDataFileSizeMax,
+ maxFileSize: formDataFileSizeMax * 1024 * 1024,
223
// TODO: pass a custom `fileWriteStreamHandler` to create binary data files directly
224
});
225
req.body = await new Promise((resolve) => {
0 commit comments