Skip to content

Commit

Permalink
! Fix playlist end message shown when loop enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
PikachuEXE committed Apr 24, 2023
1 parent 978def7 commit b48c3af
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,9 @@ export default defineComponent({
}
)
showToast(this.$t('Playing Next Video'))
} else {
showToast(this.$t('The playlist has ended. Enable loop to continue playing'))
}
showToast(this.$t('The playlist has ended. Enable loop to continue playing'))
} else {
this.$router.push(
{
Expand Down

0 comments on commit b48c3af

Please sign in to comment.