mirror of
https://github.com/beetbox/beets.git
synced 2026-01-06 07:53:40 +01:00
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:
commit
0485cb357a
1 changed files with 6 additions and 0 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue