pull/226/head
RandomNinjaAtk 2 years ago committed by GitHub
parent c418597774
commit c00af70479
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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"
@ -85,14 +85,16 @@ QueueCleanerProcess () {
verifyApiAccess () { verifyApiAccess () {
until false until false
do do
arrApiTest="" arrApiTest=""
if [ "$arrName" == "Sonarr" ] || [ "$arrName" == "Radarr" ]; then arrApiVersion=""
arrApiTest=$(curl -s "$arrUrl/api/v3/system/status?apikey=$arrApiKey" | jq -r .instanceName) if [ "$arrName" == "Sonarr" ] || [ "$arrName" == "Radarr" ]; then
elif [ "$arrName" == "Lidarr" ]; then arrApiVersion="v3"
arrApiTest=$(curl -s "$arrUrl/api/v1/system/status?apikey=$arrApiKey" | jq -r .instanceName) elif [ "$arrName" == "Lidarr" ]; then
fi arrApiVersion="v1"
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

Loading…
Cancel
Save