Fix it sometimes looping instead of going to next video when autoskipping at the end for playlists

Fix #1804
This commit is contained in:
Ajay
2023-07-28 20:42:06 -04:00
parent 31a9de252d
commit d12d847f2f
2 changed files with 9 additions and 2 deletions

View File

@@ -93,4 +93,8 @@ export function getExistingChapters(currentVideoID: VideoID, duration: number):
}
return chapters;
}
export function isPlayingPlaylist() {
return !!document.URL.includes("&list=");
}