diff options
Diffstat (limited to 'modules/pull/lfs.go')
-rw-r--r-- | modules/pull/lfs.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/pull/lfs.go b/modules/pull/lfs.go index 77890667d6..2706d3a200 100644 --- a/modules/pull/lfs.go +++ b/modules/pull/lfs.go @@ -138,7 +138,7 @@ func readCatFileBatchCheck(catFileCheckReader *io.PipeReader, shasToBatchWriter if len(fields) < 3 || fields[1] != "blob" { continue } - size, _ := strconv.Atoi(string(fields[2])) + size, _ := strconv.Atoi(fields[2]) if size > 1024 { continue } |