From 4a777d0b18140211ba9313f31ba6cd05026d0fa0 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Tue, 5 Apr 2022 23:17:55 +0200 Subject: No warning if download_finished.sh doesn't exist --- automedia | Bin 124936 -> 124936 bytes src/html.c | 4 +++- src/main.c | 3 ++- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/automedia b/automedia index cd345fc..153febf 100755 Binary files a/automedia and b/automedia differ diff --git a/src/html.c b/src/html.c index 1bdd3de..e8ddd23 100644 --- a/src/html.c +++ b/src/html.c @@ -428,7 +428,9 @@ static int download_html_items_in_reverse(const char *plugin_filepath, Buffer *d break; const char *download_finished_args[] = { download_finished_script, "html", item_dir, NULL }; - program_exec(download_finished_args, NULL, NULL); + if(file_exists(download_finished_script) == 0) + program_exec(download_finished_args, NULL, NULL); + fprintf(stderr, "Download finished for html item: %s (title: %s)\n", download_items_it->link, notify_msg); added_download_items[download_item_index] = download_items_it; diff --git a/src/main.c b/src/main.c index 45936a5..a5ab5d9 100644 --- a/src/main.c +++ b/src/main.c @@ -510,7 +510,8 @@ static void torrent_list_check_new_downloads_callback(int id, const char *name, path_join(item_path, components, 2); const char *download_finished_args[] = { download_finished_script, "rss", item_path, NULL }; - program_exec(download_finished_args, NULL, NULL); + if(file_exists(download_finished_script) == 0) + program_exec(download_finished_args, NULL, NULL); } } else { if(id >= unfinished_torrents->size) { -- cgit v1.2.3