Skip to content

Commit

Permalink
Fix bug of "ReleaseDate"
Browse files Browse the repository at this point in the history
  • Loading branch information
yaronzz committed Jan 21, 2022
1 parent 3848c4c commit 30917d1
Show file tree
Hide file tree
Showing 4 changed files with 3 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.01.21.1'
VERSION = '2022.01.21.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 @@ -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())
Expand Down
1 change: 1 addition & 0 deletions TIDALDL-PY/updatelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 30917d1

Please sign in to comment.