mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-26 15:02:47 +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 {
|
func ServeData(ctx *context.Context, name string, reader io.Reader) error {
|
||||||
buf := make([]byte, 1024)
|
buf := make([]byte, 1024)
|
||||||
n, _ := reader.Read(buf)
|
n, _ := reader.Read(buf)
|
||||||
if n > 0 {
|
if n >= 0 {
|
||||||
buf = buf[:n]
|
buf = buf[:n]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue