Actually send body when verifying upload
This commit is contained in:
parent
fed4e879aa
commit
a5486a4973
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ export default async function uploadBlob(
|
|||
// - Figure out which LFS implementation wants which UA header?
|
||||
...(verifyAction.header ?? {}),
|
||||
},
|
||||
body: [info],
|
||||
body: [Buffer.from(JSON.stringify(info))],
|
||||
});
|
||||
|
||||
if (verificationResp.statusCode === 200) {
|
||||
|
|
Loading…
Reference in a new issue