mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 12:31:23 +00:00
fix(bluebubbles): use Buffer for multipart body
This commit is contained in:
@@ -17,7 +17,7 @@ export async function postMultipartFormData(params: {
|
||||
parts: Uint8Array[];
|
||||
timeoutMs: number;
|
||||
}): Promise<Response> {
|
||||
const body = concatUint8Arrays(params.parts);
|
||||
const body = Buffer.from(concatUint8Arrays(params.parts));
|
||||
return await blueBubblesFetchWithTimeout(
|
||||
params.url,
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user