auto select episode if only one exists

This commit is contained in:
ksyasuda 2022-04-07 01:18:46 -07:00
parent fd59f7e2fe
commit acb236ce23

View File

@ -749,7 +749,11 @@ stream() {
insert_history "search" "$anime_id" & insert_history "search" "$anime_id" &
search_eps "$anime_id" search_eps "$anime_id"
fi fi
episode_selection if (((FIRST_EP_NUMBER == LAST_EP_NUMBER && FIRST_EP_NUMBER == 1))); then
ep_choice_start=1
else
episode_selection
fi
} }
parse_args() { parse_args() {