diff --git a/root/scripts/download.sh b/root/scripts/download.sh index c5be08b..cc04753 100644 --- a/root/scripts/download.sh +++ b/root/scripts/download.sh @@ -1,5 +1,10 @@ #!/usr/bin/with-contenv bash -lidarrUrlBase="/$(cat /config/config.xml | xq | jq -r .Config.UrlBase)" +lidarrUrlBase="$(cat /config/config.xml | xq | jq -r .Config.UrlBase)" +if [ "$lidarrUrlBase" = "null" ]; then + lidarrUrlBase="" +else + lidarrUrlBase="/$(cat /config/config.xml | xq | jq -r .Config.UrlBase)" +fi lidarrApiKey="$(cat /config/config.xml | xq | jq -r .Config.ApiKey)" lidarrUrl="http://127.0.0.1:8686${lidarrUrlBase}" agent="lidarr-extended ( https://github.com/RandomNinjaAtk/docker-lidarr-extended )"