From f8e903cb13c7f47964aa69bbe55eaf1e638c7615 Mon Sep 17 00:00:00 2001 From: Kilo Code Cloud Date: Wed, 14 Jan 2026 20:25:33 +0000 Subject: [PATCH] fix: remove unused variable --- src/cli/downloader.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/downloader.ts b/src/cli/downloader.ts index 96fdfb6..5cbef44 100644 --- a/src/cli/downloader.ts +++ b/src/cli/downloader.ts @@ -322,7 +322,7 @@ export async function downloadMostWatchedSegment(options: DownloadOptions): Prom const fullVideoPath = join(outputDir, `${safeTitle}_full_temp.%(ext)s`); console.log(`Downloading full video (using your yt-dlp config)...`); - const downloadedPath = await downloadFullVideo(url, fullVideoPath); + await downloadFullVideo(url, fullVideoPath); // Find the actual file (yt-dlp may have changed extension) // The downloaded path should already be correct, but let's handle the pattern