From cd614715c0f333460f940d97a9ff843930490804 Mon Sep 17 00:00:00 2001 From: Gaurav Pandey Date: Fri, 8 Sep 2023 11:28:49 -0700 Subject: [PATCH] fixes minor spelling mistake --- lidarr/Video.service.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lidarr/Video.service.bash b/lidarr/Video.service.bash index a28194f..51cc628 100644 --- a/lidarr/Video.service.bash +++ b/lidarr/Video.service.bash @@ -128,10 +128,10 @@ ImvdbCache () { cachedArtistImvdbVideoUrlsCount=$(ls /config/extended/cache/imvdb/$lidarrArtistMusicbrainzId--* 2>/dev/null | wc -l) if [ "$artistImvdbVideoUrlsCount" == "$cachedArtistImvdbVideoUrlsCount" ]; then - log "${processCount}/${lidarrArtistIdsCount} :: $lidarrArtistName :: IMVDB :: Chache is already up-to-date ($artistImvdbVideoUrlsCount==$cachedArtistImvdbVideoUrlsCount), skipping..." + log "${processCount}/${lidarrArtistIdsCount} :: $lidarrArtistName :: IMVDB :: Cache is already up-to-date ($artistImvdbVideoUrlsCount==$cachedArtistImvdbVideoUrlsCount), skipping..." return else - log "${processCount}/${lidarrArtistIdsCount} :: $lidarrArtistName :: IMVDB :: Chache needs updating (${artistImvdbVideoUrlsCount}!=${cachedArtistImvdbVideoUrlsCount})..." + log "${processCount}/${lidarrArtistIdsCount} :: $lidarrArtistName :: IMVDB :: Cache needs updating (${artistImvdbVideoUrlsCount}!=${cachedArtistImvdbVideoUrlsCount})..." if [ -f "/config/extended/logs/video/complete/$lidarrArtistMusicbrainzId" ]; then log "${processCount}/${lidarrArtistIdsCount} :: $lidarrArtistName :: IMVDB :: Removing Artist completed log file to allow artist re-processing..." rm "/config/extended/logs/video/complete/$lidarrArtistMusicbrainzId"