mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Fix artwork resolution when paths contains :
. Fix #2137
This commit is contained in:
parent
f904784e67
commit
9b81aa4403
7 changed files with 16 additions and 8 deletions
|
@ -8,6 +8,7 @@ import (
|
|||
"time"
|
||||
|
||||
"github.com/Masterminds/squirrel"
|
||||
"github.com/navidrome/navidrome/consts"
|
||||
"github.com/navidrome/navidrome/core/artwork"
|
||||
"github.com/navidrome/navidrome/log"
|
||||
"github.com/navidrome/navidrome/model"
|
||||
|
@ -121,7 +122,7 @@ func (r *refresher) getImageFiles(dirs []string) (string, time.Time) {
|
|||
updatedAt = stats.ImagesUpdatedAt
|
||||
}
|
||||
}
|
||||
return strings.Join(imageFiles, string(filepath.ListSeparator)), updatedAt
|
||||
return strings.Join(imageFiles, consts.Zwsp), updatedAt
|
||||
}
|
||||
|
||||
func (r *refresher) refreshArtists(ctx context.Context, ids ...string) error {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue