external_files: remove duplicate from cover art whitelist

I made a mistake in 0070a5820e here because there were 2 separate groups
of "front" filenames.
This commit is contained in:
Guido Cella 2023-10-04 10:47:42 +02:00 committed by Dudemanguy
parent 7b8a30fc81
commit ec80981c79
2 changed files with 2 additions and 3 deletions

View File

@ -7222,8 +7222,8 @@ Miscellaneous
``--cover-art-whitelist=<no|yes>`` ``--cover-art-whitelist=<no|yes>``
Whether to load files with a filename among "AlbumArt", "Album", "cover", Whether to load files with a filename among "AlbumArt", "Album", "cover",
"front", "AlbumArtSmall", "Folder", ".folder", "thumb", "front", and an "front", "AlbumArtSmall", "Folder", ".folder", "thumb", and an extension in
extension in ``--cover-art-auto-exts``, as cover art. This has no effect is ``--cover-art-auto-exts``, as cover art. This has no effect if
``cover-art-auto`` is ``no``. ``cover-art-auto`` is ``no``.
Default: ``yes``. Default: ``yes``.

View File

@ -43,7 +43,6 @@ static const char *const cover_files[] = {
"Folder", "Folder",
".folder", ".folder",
"thumb", "thumb",
"front",
NULL NULL
}; };