fix(blogo,gitea): infinity redading on repositoryDirFile, missing io.EOF

This commit is contained in:
Guz
2025-01-28 09:12:09 -03:00
parent 07d282daea
commit f12b82ac6e

View File

@@ -245,7 +245,7 @@ type repositoryDirFile struct {
}
func (f *repositoryDirFile) Read(p []byte) (int, error) {
return 0, nil
return 0, io.EOF
}
func (f *repositoryDirFile) Close() error {