We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb36865 commit 71a25a8Copy full SHA for 71a25a8
injected/src/features/duckplayer/util.js
@@ -238,13 +238,6 @@ export class VideoParams {
238
const vParam = url.searchParams.get('v');
239
const tParam = url.searchParams.get('t');
240
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
-
248
let time = null;
249
250
// ensure youtube video id is good
0 commit comments