From ee71e6a55f3f4e295b763859479cb66aaa15bdcd Mon Sep 17 00:00:00 2001 From: LuanRT Date: Mon, 13 Jun 2022 04:26:32 -0300 Subject: [PATCH] chore: remove unneeded code --- lib/Innertube.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/Innertube.js b/lib/Innertube.js index 7357ae6b..4df8905b 100644 --- a/lib/Innertube.js +++ b/lib/Innertube.js @@ -174,9 +174,8 @@ class Innertube { const initial_info = this.actions.getVideoInfo(video_id); const continuation = this.actions.next({ video_id }); - console.time('') + const response = await Promise.all([ initial_info, continuation ]); - console.timeEnd('') return new VideoInfo(response, this.actions, this.#player); }