Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/docker-lidarr-extended/commit/5abd95a4a4fee4b89ef4d426571686862d2ea096
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
@ -1,5 +1,5 @@
#!/usr/bin/env bash
scriptVersion = "1.0.2 09 "
scriptVersion = "1.0.2 1 0"
lidarrUrlBase = " $( cat /config/config.xml | xq | jq -r .Config.UrlBase) "
if [ " $lidarrUrlBase " = "null" ] ; then
lidarrUrlBase = ""
@ -949,7 +949,7 @@ GetMissingCutOffList () {
lidarrRecords = $( wget --timeout= 0 -q -O - " $lidarrUrl /api/v1/wanted/missing?page= $page &pagesize= $amountPerPull &sortKey= $searchOrder &sortDirection= $searchDirection &apikey= ${ lidarrApiKey } " | jq -r '.records[].id' )
for lidarrRecordId in $( echo $lidarrRecords ) ; do
if ! echo " $getNotFound " | grep " $lidarrRecordId -- " | read; then
if ! echo " $getNotFound " | grep " ^ $lidarrRecordId -- " | read; then
touch /config/extended/cache/lidarr/list/${ lidarrRecordId } -missing
fi
done
@ -974,7 +974,7 @@ GetMissingCutOffList () {
log " :: Downloading page $page ... ( $offset - $dlnumber of $lidarrCutoffTotalRecords Results) "
lidarrRecords = $( wget --timeout= 0 -q -O - " $lidarrUrl /api/v1/wanted/cutoff?page= $page &pagesize= $amountPerPull &sortKey= $searchOrder &sortDirection= $searchDirection &apikey= ${ lidarrApiKey } " | jq -r '.records[].id' )
for lidarrRecordId in $( echo $lidarrRecords ) ; do
if ! echo " $getNotFound " | grep " $lidarrRecordId -- " | read; then
if ! echo " $getNotFound " | grep " ^ $lidarrRecordId -- " | read; then
touch /config/extended/cache/lidarr/list/${ lidarrRecordId } -cutoff
fi
done