mirror of
https://github.com/beetbox/beets.git
synced 2025-12-24 01:25:47 +01:00
Update beetsplug/spotify.py
Co-authored-by: J0J0 Todos <2733783+JOJ0@users.noreply.github.com>
This commit is contained in:
parent
c64df0d27a
commit
3b8cb98e6d
1 changed files with 2 additions and 2 deletions
|
|
@ -687,12 +687,12 @@ class SpotifyPlugin(MetadataSourcePlugin, BeetsPlugin):
|
|||
track_data.get("popularity"),
|
||||
track_data.get("external_ids").get("isrc"),
|
||||
)
|
||||
return [
|
||||
return (
|
||||
track_data.get("popularity"),
|
||||
track_data.get("external_ids").get("isrc"),
|
||||
track_data.get("external_ids").get("ean"),
|
||||
track_data.get("external_ids").get("upc"),
|
||||
]
|
||||
)
|
||||
|
||||
def track_audio_features(self, track_id=None):
|
||||
"""Fetch track audio features by its Spotify ID."""
|
||||
|
|
|
|||
Loading…
Reference in a new issue