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/581f1272fc50b143d10912bdbdc68300b8c88421
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
5 additions and
1 deletions
@ -17,7 +17,11 @@ fi
plexLibraries = " $( curl -s " $plexUrl /library/sections?X-Plex-Token= $plexToken " | xq .) "
if echo " $plexLibraries " | grep " $lidarrRootFolderPath " | read; then
plexlibrarykey = " $( echo " $plexLibraries " | jq -r " .MediaContainer.Directory[] | select(.Location.\"@path\"==\" $lidarrRootFolderPath \") | .\"@key\" " | head -n 1) "
if echo " $plexLibraries " | jq -r " .MediaContainer.Directory[] | select(.Location.\"@path\"==\" $lidarrRootFolderPath \") | .\"@key\" " | head -n 1 & >/dev/null; then
plexlibrarykey = " $( echo " $plexLibraries " | jq -r " .MediaContainer.Directory[] | select(.Location.\"@path\"==\" $lidarrRootFolderPath \") | .\"@key\" " | head -n 1) "
else
plexlibrarykey = " $( echo " $plexLibraries " | jq -r " .MediaContainer.Directory | select(.Location.\"@path\"==\" $lidarrRootFolderPath \") | .\"@key\" " | head -n 1) "
fi
if [ -z " $plexlibrarykey " ] ; then
log " ERROR: No Plex Library key found for \" $lidarrRootFolderPath \" "
exit 1