mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Skip trying to read cover art from mediafile if it does not have one
This commit is contained in:
parent
2923f01cd9
commit
bce7b163ba
3 changed files with 21 additions and 11 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue