Actually send body when verifying upload

This commit is contained in:
Cat /dev/Nulo 2022-12-09 16:41:24 -03:00
parent fed4e879aa
commit a5486a4973

View file

@ -116,7 +116,7 @@ export default async function uploadBlob(
// - Figure out which LFS implementation wants which UA header? // - Figure out which LFS implementation wants which UA header?
...(verifyAction.header ?? {}), ...(verifyAction.header ?? {}),
}, },
body: [info], body: [Buffer.from(JSON.stringify(info))],
}); });
if (verificationResp.statusCode === 200) { if (verificationResp.statusCode === 200) {