mirror of
https://github.com/yaronzz/Tidal-Media-Downloader.git
synced 2026-06-13 04:05:07 +03:00
fix #874
This commit is contained in:
Binary file not shown.
@@ -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):
|
||||
|
||||
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user