mirror of
https://github.com/yaronzz/Tidal-Media-Downloader.git
synced 2026-01-16 16:04:25 -05:00
Fix bug of "ReleaseDate"
This commit is contained in:
Binary file not shown.
@@ -30,7 +30,7 @@ __LOGO__ = '''
|
||||
|
||||
https://github.com/yaronzz/Tidal-Media-Downloader
|
||||
'''
|
||||
VERSION = '2022.01.21.1'
|
||||
VERSION = '2022.01.21.2'
|
||||
|
||||
|
||||
class Printf(object):
|
||||
|
||||
@@ -151,7 +151,7 @@ def getAlbumPath(conf: Settings, album):
|
||||
retpath = retpath.replace(R"{NumberOfTracks}", str(album.numberOfTracks))
|
||||
retpath = retpath.replace(R"{NumberOfVideos}", str(album.numberOfVideos))
|
||||
retpath = retpath.replace(R"{NumberOfVolumes}", str(album.numberOfVolumes))
|
||||
retpath = retpath.replace(R"{ReleaseDate}", album.releaseDate)
|
||||
retpath = retpath.replace(R"{ReleaseDate}", str(album.releaseDate))
|
||||
retpath = retpath.replace(R"{RecordType}", album.type)
|
||||
retpath = retpath.replace(R"{None}", "")
|
||||
retpath = stripPath(retpath.strip())
|
||||
|
||||
@@ -3,6 +3,7 @@ USE pip3 install tidal-dl --upgrade
|
||||
|
||||
#### v2022-01-21
|
||||
- [x] update api key by @morguldir
|
||||
- [x] Fix bug of "ReleaseDate"
|
||||
|
||||
#### v2022-01-18
|
||||
- [X] Gui: search view
|
||||
|
||||
Reference in New Issue
Block a user