fix behavior of template string

merge-requests/5/head
sech1p 2021-03-18 23:14:46 +01:00
parent 85263995ae
commit bc128de8f9
1 changed files with 5 additions and 1 deletions

View File

@ -4,7 +4,11 @@ source ${cfg[namespace]}/templates/header.shs
declare -A strings
strings[favourites]="No favorite videos found,<br>you can do it first! ^w^"
if [[ -s storage/faves ]]; then
strings[favourites]=""
else
strings[favourites]="No favorite videos found,<br>you can do it first! ^w^"
fi
IFS=$'\n'
for i in $(tac storage/faves); do