v1.0.2 - Lidarr bugfix

This commit is contained in:
RandomNinjaAtk 2023-03-18 12:14:05 -04:00 committed by GitHub
parent 3306d3645f
commit 6cad9e9513
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
scriptVersion="1.0.1" scriptVersion="1.0.2"
######## Settings ######## Settings
scriptInterval="15m" scriptInterval="15m"
@ -86,13 +86,15 @@ verifyApiAccess () {
until false until false
do do
arrApiTest="" arrApiTest=""
arrApiVersion=""
if [ "$arrName" == "Sonarr" ] || [ "$arrName" == "Radarr" ]; then if [ "$arrName" == "Sonarr" ] || [ "$arrName" == "Radarr" ]; then
arrApiTest=$(curl -s "$arrUrl/api/v3/system/status?apikey=$arrApiKey" | jq -r .instanceName) arrApiVersion="v3"
elif [ "$arrName" == "Lidarr" ]; then elif [ "$arrName" == "Lidarr" ]; then
arrApiTest=$(curl -s "$arrUrl/api/v1/system/status?apikey=$arrApiKey" | jq -r .instanceName) arrApiVersion="v1"
fi fi
arrApiTest=$(curl -s "$arrUrl/api/$arrApiVersion/system/status?apikey=$arrApiKey" | jq -r .instanceName)
if [ "$arrApiTest" == "$arrName" ]; then if [ "$arrApiTest" == "$arrName" ]; then
arrVersion=$(curl -s "$arrUrl/api/v3/system/status?apikey=$arrApiKey" | jq -r .version) arrVersion=$(curl -s "$arrUrl/api/$arrApiVersion/system/status?apikey=$arrApiKey" | jq -r .version)
log "$arrName Version: $arrVersion" log "$arrName Version: $arrVersion"
break break
else else