Skip trying to read cover art from mediafile if it does not have one

This commit is contained in:
Deluan 2022-12-20 21:44:11 -05:00 committed by Deluan Quintão
parent 2923f01cd9
commit bce7b163ba
3 changed files with 21 additions and 11 deletions

View file

@ -6,8 +6,6 @@ import (
"strings"
"sync"
"github.com/navidrome/navidrome/consts"
"github.com/navidrome/navidrome/resources"
"github.com/navidrome/navidrome/utils"
)
@ -33,7 +31,7 @@ func (ff *MockFFmpeg) ExtractImage(ctx context.Context, path string) (io.ReadClo
if ff.Error != nil {
return nil, ff.Error
}
return resources.FS().Open(consts.PlaceholderAlbumArt)
return ff, nil
}
func (ff *MockFFmpeg) Read(p []byte) (n int, err error) {