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', + }); };