From 89c5cef4e8bd5f8b062c4f7d40a4ba5e6f13dfec Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Wed, 22 Jun 2022 11:28:22 +0000 Subject: [PATCH] 1.0.0050 - bug fix quality settings --- root/scripts/download.sh | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/root/scripts/download.sh b/root/scripts/download.sh index e1cda69..e9b40f4 100644 --- a/root/scripts/download.sh +++ b/root/scripts/download.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -scriptVersion="1.0.0049" +scriptVersion="1.0.0050" lidarrUrlBase="$(cat /config/config.xml | xq | jq -r .Config.UrlBase)" if [ "$lidarrUrlBase" = "null" ]; then lidarrUrlBase="" @@ -297,10 +297,11 @@ TidalClientSetup () { cp /config/extended/scripts/tidal-dl.json /config/xdg/.tidal-dl.json chmod 777 -R /config/xdg/ fi - tidal-dl -o /downloads/lidarr-extended/incomplete - tidal-dl -r P1080 + fi + DownloadFormat + # check for backup token and use it if exists if [ ! -f /config/xdg/.tidal-dl.token.json ]; then if [ -f /config/backup/tidal-dl.token.json ]; then @@ -346,17 +347,17 @@ TidalClientSetup () { else rm -rf /downloads/lidarr-extended/incomplete/* fi - + tidal-dl -o /downloads/lidarr-extended/incomplete -l "60261268" - - downloadCount=$(find /downloads/lidarr-extended/incomplete/ -type f -regex ".*/.*\.\(flac\|opus\|m4a\|mp3\)" | wc -l) - if [ $downloadCount -le 0 ]; then + + downloadCount=$(find /downloads/lidarr-extended/incomplete/ -type f -regex ".*/.*\.\(flac\|opus\|m4a\|mp3\)" | wc -l) + if [ $downloadCount -le 0 ]; then log ":: tidal-dl client setup verification :: ERROR :: Download failed" - log ":: tidal-dl client setup verification :: ERROR :: Please review log for errors in client" + log ":: tidal-dl client setup verification :: ERROR :: Please review log for errors in client" log ":: tidal-dl client setup verification :: ERROR :: Exiting..." rm -rf /downloads/lidarr-extended/incomplete/* exit - else + else rm -rf /downloads/lidarr-extended/incomplete/* log ":: tidal-dl client setup verification :: Download Verification Success" fi