fix: remove unused variable

This commit is contained in:
Kilo Code Cloud
2026-01-14 20:25:33 +00:00
parent 4191c194a2
commit f8e903cb13

View File

@@ -322,7 +322,7 @@ export async function downloadMostWatchedSegment(options: DownloadOptions): Prom
const fullVideoPath = join(outputDir, `${safeTitle}_full_temp.%(ext)s`); const fullVideoPath = join(outputDir, `${safeTitle}_full_temp.%(ext)s`);
console.log(`Downloading full video (using your yt-dlp config)...`); 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) // Find the actual file (yt-dlp may have changed extension)
// The downloaded path should already be correct, but let's handle the pattern // The downloaded path should already be correct, but let's handle the pattern