Skip to content

Commit fe98841

Browse files
authored
Refresh flexible MusicBrainz metadata on reimport (#6064)
Fixes #6036 - [x] Changelog. (Add an entry to `docs/changelog.rst` to the bottom of one of the lists near the top of the document.)
2 parents d4a0c02 + 92a2233 commit fe98841

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

beets/importer/tasks.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,16 @@
5151
# def extend_reimport_fresh_fields_item():
5252
# importer.REIMPORT_FRESH_FIELDS_ITEM.extend(['tidal_track_popularity']
5353
# )
54-
REIMPORT_FRESH_FIELDS_ALBUM = [
54+
REIMPORT_FRESH_FIELDS_ITEM = [
5555
"data_source",
5656
"bandcamp_album_id",
5757
"spotify_album_id",
5858
"deezer_album_id",
5959
"beatport_album_id",
6060
"tidal_album_id",
61+
"data_url",
6162
]
62-
REIMPORT_FRESH_FIELDS_ITEM = list(REIMPORT_FRESH_FIELDS_ALBUM)
63+
REIMPORT_FRESH_FIELDS_ALBUM = [*REIMPORT_FRESH_FIELDS_ITEM, "media"]
6364

6465
# Global logger.
6566
log = logging.getLogger("beets")

docs/changelog.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ New features:
2626

2727
Bug fixes:
2828

29+
- :doc:`plugins/musicbrainz` Refresh flexible MusicBrainz metadata on reimport
30+
so format changes are applied. :bug:`6036`
2931
- :doc:`plugins/spotify` Ensure ``spotifysync`` keeps popularity, ISRC, and
3032
related fields current even when audio features requests fail. :bug:`6061`
3133
- :doc:`plugins/spotify` Fixed an issue where track matching and lookups could

0 commit comments

Comments
 (0)