From b4b3104c67af1b16df0458080e652c2f544a4038 Mon Sep 17 00:00:00 2001 From: NimBold Date: Mon, 15 Jun 2026 19:29:35 +0330 Subject: [PATCH] fix(yt-dlp): correct js-runtimes syntax to prevent runtime warnings --- src-tauri/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index f71be20..1660229 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -190,7 +190,7 @@ async fn fetch_media_metadata(app_handle: tauri::AppHandle, url: String, cookie_ .arg("--retries").arg("3") .arg("--extractor-retries").arg("3") .arg("--compat-options").arg("no-youtube-unavailable-videos") - .arg("--js-runtimes").arg(format!("deno:{},node", deno_path.display())); + .arg("--js-runtimes").arg(format!("deno:{}", deno_path.display())); if let Some(browser) = cookie_browser { if !browser.is_empty() {