From 63df7cf3edf9fc45fad4186d4332f30afe66a952 Mon Sep 17 00:00:00 2001 From: soergeld Date: Mon, 27 Apr 2020 15:03:55 +0200 Subject: [PATCH] forgot to decode all tracks of an album --- beets/autotag/hooks.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/beets/autotag/hooks.py b/beets/autotag/hooks.py index 83abd8736..a5d1ae428 100644 --- a/beets/autotag/hooks.py +++ b/beets/autotag/hooks.py @@ -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