From 9daf0fb69175b1bc245715085e9f6f9412214da4 Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Fri, 29 Jul 2022 15:16:17 +0000 Subject: [PATCH] 1.0.216 - use tidal-dl v2022.07.06.1 --- root/scripts/audio.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/root/scripts/audio.sh b/root/scripts/audio.sh index a353aff..a3e6924 100644 --- a/root/scripts/audio.sh +++ b/root/scripts/audio.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -scriptVersion="1.0.215" +scriptVersion="1.0.216" lidarrUrlBase="$(cat /config/config.xml | xq | jq -r .Config.UrlBase)" if [ "$lidarrUrlBase" = "null" ]; then lidarrUrlBase="" @@ -345,7 +345,7 @@ TidalClientSetup () { if [ ! -f /config/xdg/.tidal-dl.token.json ]; then TidaldlStatusCheck log ":: TIDAL :: ERROR :: Downgrade tidal-dl for workaround..." - pip3 install tidal-dl==2022.3.4.2 + pip3 install tidal-dl==2022.3.4.2 --no-cache-dir log ":: TIDAL :: ERROR :: Loading client for required authentication, please authenticate, then exit the client..." TidaldlStatusCheck tidal-dl @@ -371,8 +371,8 @@ TidalClientSetup () { fi TidaldlStatusCheck - log ":: TIDAL :: Upgrade tidal-dl to the latest..." - pip3 install tidal-dl --upgrade + log ":: TIDAL :: Upgrade tidal-dl to newer version..." + pip3 install tidal-dl==2022.07.06.1 --no-cache-dir }