update episode selection prompt in command line mode

This commit is contained in:
ksyasuda 2022-03-03 23:46:44 -08:00
parent 3c4189e3ac
commit 006fdc6572

View File

@ -620,7 +620,8 @@ episode_selection() {
lg "START: $ep_choice_start | END: $ep_choice_end" lg "START: $ep_choice_start | END: $ep_choice_end"
elif ((LAST_EP_NUMBER > 1)); then elif ((LAST_EP_NUMBER > 1)); then
[[ "$is_download" -eq 1 ]] && [[ "$is_download" -eq 1 ]] &&
inf "Range of episodes can be specified: start_number end_number" inf "Range of episodes can be specified:" "start_number end_number"
inf "Anime:" "$anime_id"
prompt "Choose episode " "[$FIRST_EP_NUMBER-$LAST_EP_NUMBER]" prompt "Choose episode " "[$FIRST_EP_NUMBER-$LAST_EP_NUMBER]"
read -r ep_choice_start ep_choice_end read -r ep_choice_start ep_choice_end
[[ -z "$ep_choice_end" ]] && ep_choice_end="$ep_choice_start" [[ -z "$ep_choice_end" ]] && ep_choice_end="$ep_choice_start"