diff --git a/play-dl/YouTube/classes/Channel.ts b/play-dl/YouTube/classes/Channel.ts index 51196f9..8ca5539 100644 --- a/play-dl/YouTube/classes/Channel.ts +++ b/play-dl/YouTube/classes/Channel.ts @@ -60,7 +60,7 @@ export class YouTubeChannel { this.artist = !!data.artist || false; this.id = data.id || null; this.url = data.url || null; - this.icons = data.icon || [{ url: null, width: 0, height: 0 }]; + this.icons = data.icons || [{ url: null, width: 0, height: 0 }]; this.subscribers = data.subscribers || null; }