diff --git a/qobuz_dl/downloader.py b/qobuz_dl/downloader.py index 952d4bc..5a6b3e5 100644 --- a/qobuz_dl/downloader.py +++ b/qobuz_dl/downloader.py @@ -254,8 +254,8 @@ class Download: @staticmethod def _get_track_attr(meta, track_title, bit_depth, sampling_rate): return { - "album": meta["album"]["title"], - "artist": meta["album"]["artist"]["name"], + "album": sanitize_filename(meta["album"]["title"]), + "artist": sanitize_filename(meta["album"]["artist"]["name"]), "tracktitle": track_title, "year": meta["album"]["release_date_original"].split("-")[0], "bit_depth": bit_depth, @@ -265,8 +265,8 @@ class Download: @staticmethod def _get_album_attr(meta, album_title, file_format, bit_depth, sampling_rate): return { - "artist": meta["artist"]["name"], - "album": album_title, + "artist": sanitize_filename(meta["artist"]["name"]), + "album": sanitize_filename(album_title), "year": meta["release_date_original"].split("-")[0], "format": file_format, "bit_depth": bit_depth,