From 8ca0cc83b88287183b6faf5fd17ef7a2b00772fc Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Thu, 8 Aug 2024 12:55:14 +0000 Subject: [PATCH] v2.4 - Import settings during config verification Allow config changes to take affect between script runs, to avoid requiring restart --- lidarr/AutoArtistAdder.bash | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lidarr/AutoArtistAdder.bash b/lidarr/AutoArtistAdder.bash index 87ef25a..178f172 100644 --- a/lidarr/AutoArtistAdder.bash +++ b/lidarr/AutoArtistAdder.bash @@ -1,5 +1,5 @@ #!/usr/bin/with-contenv bash -scriptVersion="2.3" +scriptVersion="2.4" scriptName="AutoArtistAdder" ### Import Settings @@ -8,6 +8,8 @@ source /config/extended.conf source /config/extended/functions verifyConfig () { + ### Import Settings + source /config/extended.conf if echo "$addDeezerTopArtists $addDeezerTopAlbumArtists $addDeezerTopTrackArtists $addRelatedArtists" | grep -i "true" | read; then sleep 0.01