mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 20:59:31 +01:00
Fix empty file download (#1506)
This commit is contained in:
parent
fa2a513c62
commit
bb14c97d40
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ import (
|
|||
func ServeData(ctx *context.Context, name string, reader io.Reader) error {
|
||||
buf := make([]byte, 1024)
|
||||
n, _ := reader.Read(buf)
|
||||
if n > 0 {
|
||||
if n >= 0 {
|
||||
buf = buf[:n]
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue