feat: add original album track count, fix fetching albums with more than 200 tracks
This commit is contained in:
parent
83f8652776
commit
544782f8de
18 changed files with 3870 additions and 5 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -18,6 +18,7 @@ MusicAlbum(
|
|||
album_type: ep,
|
||||
year: Some(2016),
|
||||
by_va: false,
|
||||
track_count: 5,
|
||||
tracks: [
|
||||
TrackItem(
|
||||
id: "aGd3VKSOTxY",
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@ MusicAlbum(
|
|||
album_type: album,
|
||||
year: Some(2024),
|
||||
by_va: true,
|
||||
track_count: 14,
|
||||
tracks: [
|
||||
TrackItem(
|
||||
id: "ilNEztApdjI",
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@ MusicAlbum(
|
|||
album_type: single,
|
||||
year: None,
|
||||
by_va: false,
|
||||
track_count: 1,
|
||||
tracks: [
|
||||
TrackItem(
|
||||
id: "1Sz3lUVGBSM",
|
||||
|
|
|
|||
|
|
@ -36,6 +36,7 @@ MusicAlbum(
|
|||
album_type: album,
|
||||
year: Some(2011),
|
||||
by_va: false,
|
||||
track_count: 15,
|
||||
tracks: [
|
||||
TrackItem(
|
||||
id: "js0moD0CIRQ",
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@ MusicAlbum(
|
|||
album_type: show,
|
||||
year: Some(2015),
|
||||
by_va: false,
|
||||
track_count: 27,
|
||||
tracks: [
|
||||
TrackItem(
|
||||
id: "ZIjGPc6vG0Y",
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@ MusicAlbum(
|
|||
album_type: single,
|
||||
year: Some(2020),
|
||||
by_va: false,
|
||||
track_count: 1,
|
||||
tracks: [
|
||||
TrackItem(
|
||||
id: "VU6lEv0PKAo",
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@ MusicAlbum(
|
|||
album_type: album,
|
||||
year: Some(2019),
|
||||
by_va: false,
|
||||
track_count: 18,
|
||||
tracks: [
|
||||
TrackItem(
|
||||
id: "R3VIKRtzAdE",
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@ MusicAlbum(
|
|||
album_type: single,
|
||||
year: Some(2022),
|
||||
by_va: true,
|
||||
track_count: 6,
|
||||
tracks: [
|
||||
TrackItem(
|
||||
id: "Tzai7JXo45w",
|
||||
|
|
|
|||
Reference in a new issue