From 6b43d9ef5fe29b7e36a99d2c04b6e5107d3ebe5d Mon Sep 17 00:00:00 2001 From: Dominika Liberda Date: Tue, 30 Mar 2021 23:23:13 +0200 Subject: [PATCH] * fixed unquoted shell expansion --- webroot/watch.shs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webroot/watch.shs b/webroot/watch.shs index 27f4496..7724b1b 100755 --- a/webroot/watch.shs +++ b/webroot/watch.shs @@ -6,7 +6,7 @@ fi declare -A strings -if [[ ! $(which haruhi-dl) ]]; then +if [[ ! "$(which haruhi-dl)" ]]; then strings[error]='Could not load video' source templates/head.sh source "${cfg[namespace]}/templates/header.shs"