mirror of
https://github.com/beetbox/beets.git
synced 2026-01-09 17:33:51 +01:00
forgot to decode all tracks of an album
This commit is contained in:
parent
98389b6161
commit
63df7cf3ed
1 changed files with 4 additions and 0 deletions
|
|
@ -165,6 +165,10 @@ class AlbumInfo(Map):
|
|||
if isinstance(value, bytes):
|
||||
setattr(self, fld, value.decode(codec, 'ignore'))
|
||||
|
||||
if 'tracks' in self:
|
||||
for track in self.tracks:
|
||||
track.decode(codec)
|
||||
|
||||
|
||||
class TrackInfo(Map):
|
||||
"""Describes a canonical track present on a release. Appears as part
|
||||
|
|
|
|||
Loading…
Reference in a new issue