Skip to content

Commit

Permalink
fix #874
Browse files Browse the repository at this point in the history
  • Loading branch information
yaronzz committed Mar 4, 2022
1 parent 5e73ad3 commit 2484a8d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file modified TIDALDL-PY/exe/tidal-dl.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion TIDALDL-PY/tidal_dl/printf.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
https://github.com/yaronzz/Tidal-Media-Downloader
'''
VERSION = '2022.03.04.1'
VERSION = '2022.03.04.2'


class Printf(object):
Expand Down
2 changes: 1 addition & 1 deletion TIDALDL-PY/tidal_dl/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 2484a8d

Please sign in to comment.