mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 04:55:10 +01:00
Merge pull request #3343 from rhlahuja/spotify-year-unpack
Fix handling of Spotify year-only release dates
This commit is contained in:
commit
5d6366a92d
2 changed files with 4 additions and 2 deletions
|
|
@ -173,7 +173,7 @@ class SpotifyPlugin(BeetsPlugin):
|
|||
year, month = date_parts
|
||||
day = None
|
||||
elif release_date_precision == 'year':
|
||||
year = date_parts
|
||||
year = date_parts[0]
|
||||
month = None
|
||||
day = None
|
||||
else:
|
||||
|
|
|
|||
|
|
@ -80,8 +80,10 @@ Fixes:
|
|||
* :doc:`plugins/replaygain`: Fix the storage format in R128 gain tags.
|
||||
:bug:`3311` :bug:`3314`
|
||||
* :doc:`/plugins/discogs`: Fixed a crash that occurred when the Master URI
|
||||
isn't set
|
||||
isn't set.
|
||||
:bug:`2965` :bug:`3239`
|
||||
* :doc:`/plugins/spotify`: Fix handling of year-only release dates
|
||||
returned by Spotify Albums API.
|
||||
|
||||
For plugin developers:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue