fixed adding videos to playlists

This commit is contained in:
Emma Tebibyte 2023-11-15 11:26:27 -07:00
parent d966cf1a45
commit fbf3516435
Signed by: emma
GPG Key ID: 6D661C738815E7DD

2
yt
View File

@ -20,7 +20,7 @@ set -e
add() { # adds a video to a playlist file
while test -n "$2"; do
if test -z "$(sed -n ";$1;p" "$2")"
if test -n "$(grep -e "$1" "$2")"
then
printf "%s: %s: %s: Video already in playlist.\n" "$argv0" "$2" "$1"
exit