Skip to content

Commit 71a25a8

Browse files
authored
Duck Player: Change Playlist URL behavior (#1787)
1 parent cb36865 commit 71a25a8

File tree

1 file changed

+0
-7
lines changed
  • injected/src/features/duckplayer

1 file changed

+0
-7
lines changed

injected/src/features/duckplayer/util.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -238,13 +238,6 @@ export class VideoParams {
238238
const vParam = url.searchParams.get('v');
239239
const tParam = url.searchParams.get('t');
240240

241-
// don't continue if 'list' is present, but 'index' is not.
242-
// valid: '/watch?v=321&list=123&index=1234'
243-
// invalid: '/watch?v=321&list=123' <- index absent
244-
if (url.searchParams.has('list') && !url.searchParams.has('index')) {
245-
return null;
246-
}
247-
248241
let time = null;
249242

250243
// ensure youtube video id is good

0 commit comments

Comments
 (0)