From b7269f85cec029367ffc809d86c63f80c30e03e5 Mon Sep 17 00:00:00 2001 From: Ark74 Date: Sat, 11 Apr 2020 05:29:04 -0500 Subject: [PATCH] Fix missing condition --- quick_jibri_installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quick_jibri_installer.sh b/quick_jibri_installer.sh index 35dff38..670b027 100644 --- a/quick_jibri_installer.sh +++ b/quick_jibri_installer.sh @@ -504,7 +504,7 @@ sed -i "$DB_STR,$DB_END{s|// },|},|}" $MEET_CONF fi #LocalRecording -if +if [ $ENABLE_LAR = "yes" ]; then echo "# Enabling local recording (audio only)." LR_STR=$(grep -n "// Local Recording" $MEET_CONF | cut -d ":" -f1) LR_END=$((LR_STR + 18))