From 2d7fe04a8a5d0589717e91a427d0a2449d41b61e Mon Sep 17 00:00:00 2001 From: LuanRT Date: Thu, 11 Aug 2022 20:47:21 -0300 Subject: [PATCH] fix: oopsie, forgot to remove the video id while debugging --- src/Innertube.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Innertube.ts b/src/Innertube.ts index 396ae52f..263db72a 100644 --- a/src/Innertube.ts +++ b/src/Innertube.ts @@ -77,7 +77,7 @@ class Innertube { const initial_info = await this.actions.execute('/player', { client: 'ANDROID', - videoId: 'mFWf4Tb5m6Y' + videoId: video_id }); const continuation = this.actions.next({ video_id }); @@ -96,7 +96,7 @@ class Innertube { const response = await this.actions.execute('/player', { client: 'ANDROID', - videoId: 'mFWf4Tb5m6Y' + videoId: video_id }); return new VideoInfo([ response ], this.actions, this.session.player, cpn);