hardlink deletion factors in hardlink counter

This commit is contained in:
Chris Lu
2020-09-24 09:43:52 -07:00
parent 1295347958
commit 2e7c361a0d
3 changed files with 9 additions and 6 deletions

View File

@@ -90,7 +90,7 @@ func fetchChunk(lookupFileIdFn LookupFileIdFunctionType, fileId string, cipherKe
return nil, err
}
var buffer bytes.Buffer
err = util.ReadUrlAsStream(urlString+"?readDeleted=true", cipherKey, isGzipped, true, 0, 0, func(data []byte) {
err = util.ReadUrlAsStream(urlString, cipherKey, isGzipped, true, 0, 0, func(data []byte) {
buffer.Write(data)
})
if err != nil {