Skip to content

Commit

Permalink
Fix lfs preview bug (#14428)
Browse files Browse the repository at this point in the history
  • Loading branch information
lunny authored Jan 22, 2021
1 parent e35d1bf commit 3287ce2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion routers/repo/view.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import (
"encoding/base64"
"fmt"
gotemplate "html/template"
"io"
"io/ioutil"
"net/url"
"path"
Expand Down Expand Up @@ -435,7 +436,9 @@ func renderFile(ctx *context.Context, entry *git.TreeEntry, treeLink, rawLink st

buf = make([]byte, 1024)
n, err = dataRc.Read(buf)
if err != nil {
// Error EOF don't mean there is an error, it just means we read to
// the end
if err != nil && err != io.EOF {
ctx.ServerError("Data", err)
return
}
Expand Down

0 comments on commit 3287ce2

Please sign in to comment.