stop loop after 12 copies

This commit is contained in:
fred 2023-10-12 00:28:17 +02:00
parent d215546de1
commit f2cb1ea33e
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ if [[ ! ${TIDDLER} ]]; then
echo "COPIE : $ZYURL"
## LIMIT TO 12 MAXIMUM COPY PER DAY PER PLAYER
[[ $tot == 13 ]] && echo "MAXIMUM COPY REACHED FOR TODAY" && continue
[[ $tot == 13 ]] && echo "MAXIMUM COPY REACHED FOR TODAY" && break
TITLE="$(/usr/local/bin/yt-dlp $BROWSER --print "%(title)s" "${ZYURL}" | detox --inline)"
[[ ! $TITLE ]] && echo "NO TITLE" && continue