This commit is contained in:
Yaronzz
2022-03-04 18:03:38 +08:00
parent 5e73ad35fa
commit 2484a8d4d8
3 changed files with 2 additions and 2 deletions
Binary file not shown.
+1 -1
View File
@@ -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):
+1 -1
View File
@@ -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):