Skip to content

Commit

Permalink
Merge branch 'fix/playlist/user-playlist-from-history' into custom-bu…
Browse files Browse the repository at this point in the history
…ilds/current

* fix/playlist/user-playlist-from-history:
  ! Fix playlist type not passed when playing next/prev item in a user playlist
  • Loading branch information
PikachuEXE committed Jan 31, 2024
2 parents 9eb54dd + 168f11d commit 2331abf
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,8 @@ export default defineComponent({

playNextVideo: function () {
const playlistInfo = {
playlistId: this.playlistId
playlistId: this.playlistId,
playlistType: this.playlistType,
}

const videoIndex = this.videoIndexInPlaylistItems
Expand Down Expand Up @@ -349,7 +350,8 @@ export default defineComponent({
showToast(this.$t('Playing Previous Video'))

const playlistInfo = {
playlistId: this.playlistId
playlistId: this.playlistId,
playlistType: this.playlistType,
}

const videoIndex = this.videoIndexInPlaylistItems
Expand Down

0 comments on commit 2331abf

Please sign in to comment.