Skip to content

Commit

Permalink
Merge pull request #18 from Vedant9500/main
Browse files Browse the repository at this point in the history
changed "start next episode? (y/n)" to "start next episode? (yes/no)"
  • Loading branch information
Wraient authored Dec 18, 2024
2 parents 35848a7 + 7ab5643 commit e0a9600
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/curd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -463,12 +463,12 @@ func main() {
if userCurdConfig.NextEpisodePrompt {
var answer string
if userCurdConfig.RofiSelection {
answer, err = internal.GetUserInputFromRofi("Start next episode? (y/n)")
answer, err = internal.GetUserInputFromRofi("Start next episode? (yes/no)")
if err != nil {
internal.ExitCurd(err)
}
} else {
fmt.Println("Start next episode? (y/n)")
fmt.Println("Start next episode? (yes/no)")
fmt.Scanln(&answer)
}
if answer == "y" || answer == "Y" || answer == "yes" || answer == "Yes" || answer == "YES" || answer == "" {
Expand Down

0 comments on commit e0a9600

Please sign in to comment.