Compare commits

...

2 commits

Author SHA1 Message Date
Cat /dev/Nulo f85834bcdf 0.2.5 2022-12-09 16:41:41 -03:00
Cat /dev/Nulo a5486a4973 Actually send body when verifying upload 2022-12-09 16:41:24 -03:00
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{
"name": "@nulo/isogit-lfs",
"version": "0.2.4",
"version": "0.2.5",
"description": "LFS helpers for Isomorphic Git",
"main": "src/index.ts",
"repository": "git@github.com:riboseinc/isogit-lfs.git",

View file

@ -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) {