mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 19:06:18 +01:00 
			
		
		
		
	Fix LFS not returning correct content length when requesting a range of bytes (#2864)
This commit is contained in:
		| @@ -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") | ||||
|   | ||||
		Reference in New Issue
	
	Block a user