Small fix.

This commit is contained in:
sheep 2021-10-09 02:50:04 -04:00
parent 8f55e6ed9a
commit 96110acf3d
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ ALBUM=${DATA[2]}
if [[ `wget -S --spider "https://makeitpersonal.co" 2>&1 | grep 'HTTP/1.1 200 OK'` ]]; then
LYRICS=$(wget --user-agent="Mozilla/5.0 Gecko/20100101" --no-check-certificate --quiet --timeout=10 -O - "https://makeitpersonal.co/lyrics?artist=$SAFE_ARTIST&title=$SAFE_TITLE")
LYRICS=$(wget --user-agent="Mozilla/5.0 Gecko/20100101" --no-check-certificate --quiet --timeout=10 -O - "https://makeitpersonal.co/lyrics?artist=$SAFE_ARTIST&title=$SAFE_TITLE" 2>/dev/null)
printf "\"$TITLE\" by \"$ARTIST\" $ALBUM\n$LYRICS\n"