From b3b3d45b967047164eb3cf96809b14edece06ee1 Mon Sep 17 00:00:00 2001 From: JellyBrick Date: Mon, 28 Jul 2025 23:09:25 +0900 Subject: [PATCH] fix(downloader): fix for `getBasicInfo` --- src/plugins/downloader/main/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/plugins/downloader/main/index.ts b/src/plugins/downloader/main/index.ts index 814c7658..bd93f909 100644 --- a/src/plugins/downloader/main/index.ts +++ b/src/plugins/downloader/main/index.ts @@ -848,5 +848,7 @@ const getMetadata = (info: TrackInfo): CustomSongInfo => ({ const getAndroidTvInfo = async (id: string): Promise => { // GetInfo 404s with the bypass, so we use getBasicInfo instead // that's fine as we only need the streaming data - return await yt.getBasicInfo(id, 'TV_EMBEDDED'); + return await yt.getBasicInfo(id, { + client: 'TV_EMBEDDED', + }); };