Fix artwork resolution when paths contains :. Fix #2137

This commit is contained in:
Deluan 2023-02-02 12:13:24 -05:00
parent f904784e67
commit 9b81aa4403
7 changed files with 16 additions and 8 deletions

View file

@ -59,7 +59,7 @@ func upAddAlbumPathsDirs(filePaths string) string {
}
slices.Sort(dirs)
dirs = slices.Compact(dirs)
return strings.Join(dirs, string(filepath.ListSeparator))
return strings.Join(dirs, consts.Zwsp)
}
func downAddAlbumPaths(tx *sql.Tx) error {