Fix LFS not returning correct content length when requesting a range of bytes (#2864)
This commit is contained in:
parent
cdc4600725
commit
6e2e7b325f
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ func getContentHandler(ctx *context.Context) {
|
|||
return
|
||||
}
|
||||
|
||||
ctx.Resp.Header().Set("Content-Length", strconv.FormatInt(meta.Size, 10))
|
||||
ctx.Resp.Header().Set("Content-Length", strconv.FormatInt(meta.Size-fromByte, 10))
|
||||
ctx.Resp.Header().Set("Content-Type", "application/octet-stream")
|
||||
|
||||
filename := ctx.Params("filename")
|
||||
|
|
Loading…
Reference in a new issue