make autoplay stop after last episode

This commit is contained in:
ksyasuda 2022-06-04 16:37:55 -07:00
parent e5772469c7
commit f218b34e21

View File

@ -811,7 +811,7 @@ open_episode() {
if ((is_autoplay == 1)); then if ((is_autoplay == 1)); then
lg "Waiting for video to finish playing..." lg "Waiting for video to finish playing..."
wait "$PID" wait "$PID"
if continue_watching; then if ((episode + 1 <= LAST_EP_NUMBER)) && continue_watching; then
open_episode "$anime_id" "$((episode + 1))" "$ddir" open_episode "$anime_id" "$((episode + 1))" "$ddir"
else else
exit 0 exit 0