More descriptive error when artist.jpg not found

This commit is contained in:
Deluan 2023-01-13 15:30:02 -05:00 committed by Deluan Quintão
parent 0ffef05cc3
commit 94c6d47181
1 changed files with 1 additions and 2 deletions

View File

@ -2,7 +2,6 @@ package artwork
import (
"context"
"errors"
"fmt"
"io"
"io/fs"
@ -80,7 +79,7 @@ func fromArtistFolder(ctx context.Context, artistFolder string, pattern string)
return nil, "", err
}
if len(matches) == 0 {
return nil, "", errors.New("no matches for " + pattern)
return nil, "", fmt.Errorf(`no matches for "%s" in %s`, pattern, artistFolder)
}
filePath := filepath.Join(artistFolder, matches[0])
f, err := os.Open(filePath)