File tree Expand file tree Collapse file tree 14 files changed +1
-51
lines changed
Sources/ContentScopeScripts/dist Expand file tree Collapse file tree 14 files changed +1
-51
lines changed Original file line number Diff line number Diff line change 1
- - NTP: Integration tests and fixes for how omnibar interacts with search field (#1805)
2
- - Docs: Work with content-scope-scripts repo on Windows (#1794)
3
- - Ease adoption of testing c-s-s (#1797)
4
- - NTP: Basic omnibar integration tests (#1798)
5
- - Prettier the test-pages (#1776)
6
- - Document test pages (#1796)
7
- - Coding style (#1795)
8
- - Move docs from Asana (#1792)
1
+ - Duck Player: Change Playlist URL behavior (#1787)
Original file line number Diff line number Diff line change 5203
5203
let id = null ;
5204
5204
const vParam = url . searchParams . get ( "v" ) ;
5205
5205
const tParam = url . searchParams . get ( "t" ) ;
5206
- if ( url . searchParams . has ( "list" ) && ! url . searchParams . has ( "index" ) ) {
5207
- return null ;
5208
- }
5209
5206
let time = null ;
5210
5207
if ( vParam && _VideoParams . validVideoId . test ( vParam ) ) {
5211
5208
id = vParam ;
Original file line number Diff line number Diff line change 5335
5335
let id = null;
5336
5336
const vParam = url.searchParams.get("v");
5337
5337
const tParam = url.searchParams.get("t");
5338
- if (url.searchParams.has("list") && !url.searchParams.has("index")) {
5339
- return null;
5340
- }
5341
5338
let time = null;
5342
5339
if (vParam && _VideoParams.validVideoId.test(vParam)) {
5343
5340
id = vParam;
Original file line number Diff line number Diff line change 3121
3121
let id = null ;
3122
3122
const vParam = url . searchParams . get ( "v" ) ;
3123
3123
const tParam = url . searchParams . get ( "t" ) ;
3124
- if ( url . searchParams . has ( "list" ) && ! url . searchParams . has ( "index" ) ) {
3125
- return null ;
3126
- }
3127
3124
let time = null ;
3128
3125
if ( vParam && _VideoParams . validVideoId . test ( vParam ) ) {
3129
3126
id = vParam ;
Original file line number Diff line number Diff line change 4276
4276
let id = null ;
4277
4277
const vParam = url . searchParams . get ( "v" ) ;
4278
4278
const tParam = url . searchParams . get ( "t" ) ;
4279
- if ( url . searchParams . has ( "list" ) && ! url . searchParams . has ( "index" ) ) {
4280
- return null ;
4281
- }
4282
4279
let time = null ;
4283
4280
if ( vParam && _VideoParams . validVideoId . test ( vParam ) ) {
4284
4281
id = vParam ;
Original file line number Diff line number Diff line change 7302
7302
let id = null ;
7303
7303
const vParam = url . searchParams . get ( "v" ) ;
7304
7304
const tParam = url . searchParams . get ( "t" ) ;
7305
- if ( url . searchParams . has ( "list" ) && ! url . searchParams . has ( "index" ) ) {
7306
- return null ;
7307
- }
7308
7305
let time = null ;
7309
7306
if ( vParam && _VideoParams . validVideoId . test ( vParam ) ) {
7310
7307
id = vParam ;
Original file line number Diff line number Diff line change 3121
3121
let id = null ;
3122
3122
const vParam = url . searchParams . get ( "v" ) ;
3123
3123
const tParam = url . searchParams . get ( "t" ) ;
3124
- if ( url . searchParams . has ( "list" ) && ! url . searchParams . has ( "index" ) ) {
3125
- return null ;
3126
- }
3127
3124
let time = null ;
3128
3125
if ( vParam && _VideoParams . validVideoId . test ( vParam ) ) {
3129
3126
id = vParam ;
Original file line number Diff line number Diff line change 11287
11287
let id = null;
11288
11288
const vParam = url.searchParams.get("v");
11289
11289
const tParam = url.searchParams.get("t");
11290
- if (url.searchParams.has("list") && !url.searchParams.has("index")) {
11291
- return null;
11292
- }
11293
11290
let time = null;
11294
11291
if (vParam && _VideoParams.validVideoId.test(vParam)) {
11295
11292
id = vParam;
Original file line number Diff line number Diff line change 3121
3121
let id = null ;
3122
3122
const vParam = url . searchParams . get ( "v" ) ;
3123
3123
const tParam = url . searchParams . get ( "t" ) ;
3124
- if ( url . searchParams . has ( "list" ) && ! url . searchParams . has ( "index" ) ) {
3125
- return null ;
3126
- }
3127
3124
let time = null ;
3128
3125
if ( vParam && _VideoParams . validVideoId . test ( vParam ) ) {
3129
3126
id = vParam ;
Original file line number Diff line number Diff line change 8723
8723
let id = null;
8724
8724
const vParam = url.searchParams.get("v");
8725
8725
const tParam = url.searchParams.get("t");
8726
- if (url.searchParams.has("list") && !url.searchParams.has("index")) {
8727
- return null;
8728
- }
8729
8726
let time = null;
8730
8727
if (vParam && _VideoParams.validVideoId.test(vParam)) {
8731
8728
id = vParam;
You can’t perform that action at this time.
0 commit comments