From 33959af52a00ec0fd0c7cebe759075e72b0bc599 Mon Sep 17 00:00:00 2001 From: ngInit <38122413+ngInit@users.noreply.github.com> Date: Thu, 11 Jan 2024 23:56:49 -0700 Subject: [PATCH] Update Video.service.bash null check added to $videoContainer --- lidarr/Video.service.bash | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lidarr/Video.service.bash b/lidarr/Video.service.bash index eb4de4c..845b836 100644 --- a/lidarr/Video.service.bash +++ b/lidarr/Video.service.bash @@ -8,7 +8,9 @@ source /config/extended.conf source /config/extended/functions verifyConfig () { - videoContainer=mkv + if [ -z "$videoContainer" ]; then + videoContainer="mkv" + fi if [ "$enableVideo" != "true" ]; then log "Script is not enabled, enable by setting enableVideo to \"true\" by modifying the \"/config/extended.conf\" config file..."