diff --git a/beetsplug/beatport.py b/beetsplug/beatport.py index eabf5dc31..bede8071d 100644 --- a/beetsplug/beatport.py +++ b/beetsplug/beatport.py @@ -432,6 +432,7 @@ class BeatportPlugin(BeetsPlugin): tracks = [self._get_track_info(x) for x in release.tracks] return AlbumInfo(album=release.name, album_id=release.beatport_id, + beatport_album_id=release.beatport_id, artist=artist, artist_id=artist_id, tracks=tracks, albumtype=release.category, va=va, year=release.release_date.year, diff --git a/beetsplug/deezer.py b/beetsplug/deezer.py index 86c182c39..77f7edc85 100644 --- a/beetsplug/deezer.py +++ b/beetsplug/deezer.py @@ -98,6 +98,7 @@ class DeezerPlugin(MetadataSourcePlugin, BeetsPlugin): return AlbumInfo( album=album_data['title'], album_id=deezer_id, + deezer_album_id=deezer_id, artist=artist, artist_credit=self.get_artist([album_data['artist']])[0], artist_id=artist_id,