From 4f8dbf18775d9e1c0a5fc2e1c66bb4ca15040fc4 Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Tue, 19 Jul 2022 19:55:32 -0400 Subject: [PATCH] 1.0.208 - bug fix for new notfound process "NotFoundFolderCleaner" --- root/scripts/download.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/root/scripts/download.sh b/root/scripts/download.sh index d3814d4..2ba3e6e 100644 --- a/root/scripts/download.sh +++ b/root/scripts/download.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -scriptVersion="1.0.207" +scriptVersion="1.0.208" lidarrUrlBase="$(cat /config/config.xml | xq | jq -r .Config.UrlBase)" if [ "$lidarrUrlBase" = "null" ]; then lidarrUrlBase="" @@ -198,12 +198,12 @@ DownloadFolderCleaner () { NotFoundFolderCleaner () { # check for completed download folder - if [ -d /config/extended/logs/downloaded/notfound ]; then + if [ -d /config/extended/logs/notfound ]; then log ":: Removing prevously notfound lidarr album ids older than 7 days to give them a retry..." # check for notfound entries older than 7 days - if find /config/extended/logs/downloaded/notfound -mindepth 1 -type f -mtime +7 | read; then + if find /config/extended/logs/notfound -mindepth 1 -type f -mtime +7 | read; then # delete ntofound entries older than 7 days - find /config/extended/logs/downloaded/notfound -mindepth 1 -type f -mtime +7 -delete + find /config/extended/logs/notfound -mindepth 1 -type f -mtime +7 -delete fi fi }