mirror of
https://github.com/YuzuZensai/play-dl-test.git
synced 2026-01-31 14:58:05 +00:00
Playlist thumbnail issue fixed
This commit is contained in:
@@ -1,11 +1,9 @@
|
||||
export class YouTubeThumbnail {
|
||||
id: string;
|
||||
url: string;
|
||||
width: number;
|
||||
height: number;
|
||||
|
||||
constructor(data: any) {
|
||||
this.id = data.id;
|
||||
this.url = data.url;
|
||||
this.width = data.width;
|
||||
this.height = data.height;
|
||||
@@ -13,7 +11,6 @@ export class YouTubeThumbnail {
|
||||
|
||||
toJSON() {
|
||||
return {
|
||||
id: this.id,
|
||||
url: this.url,
|
||||
width: this.width,
|
||||
height: this.height
|
||||
|
||||
Reference in New Issue
Block a user