Fix LFS not returning correct content length when requesting a range of bytes (#2864)

This commit is contained in:
Jacob Parry 2017-11-06 23:33:04 -05:00 committed by Lauris BH
parent cdc4600725
commit 6e2e7b325f
1 changed files with 1 additions and 1 deletions

View File

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