Merge pull request #4781 from wisp3rwind/pr_partial_revert_4774

fetchart: revert a cleanup from #4774 that could break plugins
This commit is contained in:
Adrian Sampson 2023-05-07 08:33:10 -07:00 committed by GitHub
commit 0485cb357a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -977,6 +977,12 @@ class Spotify(RemoteArtSource):
return
# Try each source in turn.
# Note that SOURCES_ALL is redundant (and presently unused). However, we keep
# it around nn order not break plugins that "register" (a.k.a. monkey-patch)
# their own fetchart sources.
SOURCES_ALL = ['filesystem', 'coverart', 'itunes', 'amazon', 'albumart',
'wikipedia', 'google', 'fanarttv', 'lastfm', 'spotify']
ART_SOURCES = {
'filesystem': FileSystem,
'coverart': CoverArtArchive,