From 2ed7e1eb811a88348659ec33ccb711c9ef048eed Mon Sep 17 00:00:00 2001 From: AustrianToast Date: Thu, 29 May 2025 12:22:52 +0200 Subject: [PATCH] fix executable name --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index f556ab0..031286d 100644 --- a/src/main.c +++ b/src/main.c @@ -135,7 +135,7 @@ int h_download(char *line, Config config) { char *tmp = malloc(10000); if (strstr(website_name, "Iwara") != NULL) { sprintf(tmp, "%s/%s/%s/%(id)s.%(ext)s", config.data_dir, artist_name, website_name); - args[0] = "yt-dlp_linux"; + args[0] = "yt-dlp"; args[1] = "--config-locations"; args[2] = config.yt_dlp_conf; args[3] = "-o";