diff --git a/TIDALDL-PY/exe/tidal-dl.exe b/TIDALDL-PY/exe/tidal-dl.exe index cffcee5..d54c8a2 100644 Binary files a/TIDALDL-PY/exe/tidal-dl.exe and b/TIDALDL-PY/exe/tidal-dl.exe differ diff --git a/TIDALDL-PY/tidal_dl/printf.py b/TIDALDL-PY/tidal_dl/printf.py index 2d5547e..1b0bbc0 100644 --- a/TIDALDL-PY/tidal_dl/printf.py +++ b/TIDALDL-PY/tidal_dl/printf.py @@ -30,7 +30,7 @@ __LOGO__ = ''' https://github.com/yaronzz/Tidal-Media-Downloader ''' -VERSION = '2022.03.04.1' +VERSION = '2022.03.04.2' class Printf(object): diff --git a/TIDALDL-PY/tidal_dl/util.py b/TIDALDL-PY/tidal_dl/util.py index b7514ac..4fc6a50 100644 --- a/TIDALDL-PY/tidal_dl/util.py +++ b/TIDALDL-PY/tidal_dl/util.py @@ -182,7 +182,7 @@ def getTrackPath(conf: Settings, track, stream, album=None, playlist=None): number = __getIndexStr__(track.trackNumberOnPlaylist) # artist artists = aigpy.path.replaceLimitChar(getArtistsName(track.artists), '-') - artist = aigpy.path.replaceLimitChar(getArtistsName(track.artist.name), '-') if track.artist is not None else "" + artist = aigpy.path.replaceLimitChar(track.artist.name, '-') if track.artist is not None else "" # title title = track.title if not aigpy.string.isNull(track.version):