From 3b5ed95f06b7c82a44ed8965f27ec3cdbdfde564 Mon Sep 17 00:00:00 2001 From: Kilo Code Cloud Date: Wed, 14 Jan 2026 20:31:02 +0000 Subject: [PATCH] fix: remove unused variable --- src/cli/downloader.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/cli/downloader.ts b/src/cli/downloader.ts index a7fdb7b..b306a17 100644 --- a/src/cli/downloader.ts +++ b/src/cli/downloader.ts @@ -111,7 +111,6 @@ async function downloadFullVideo(url: string, outputDir: string, safeTitle: stri async function findVideoFile(outputDir: string, safeTitle: string): Promise { // Video extensions to look for (not subtitles) const videoExtensions = ["mp4", "mkv", "webm", "mov", "avi", "m4v"]; - const subtitleExtensions = ["vtt", "srt", "ass", "lrc"]; return new Promise((resolve) => { const glob = spawn("find", [outputDir, "-name", `${safeTitle}_temp_*`, "-type", "f"]);