From c24b417f39bebba15783d90a0aaecfa31def5cce Mon Sep 17 00:00:00 2001 From: killer069 <65385476+killer069@users.noreply.github.com> Date: Tue, 23 Nov 2021 09:49:22 +0530 Subject: [PATCH] Channel Icons Fixed --- play-dl/YouTube/classes/Channel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }