Skip to content

Commit

Permalink
! Fix reverse condition
Browse files Browse the repository at this point in the history
  • Loading branch information
PikachuEXE committed Oct 27, 2023
1 parent 7cd0aec commit 2803d21
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ export default defineComponent({
playlistLoop: this.getPlaylistLoop(),
}
// Only play video in non playlist mode when user playlist detected
if (!this.inUserPlaylist) {
if (this.inUserPlaylist) {
Object.assign(payload, {
playlistId: null,
playlistIndex: null,
Expand Down

0 comments on commit 2803d21

Please sign in to comment.