From 0264cd815a78730e862d98c0a2e3bf30626ba1b4 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 23 Aug 2019 16:52:30 +0200 Subject: [PATCH] (HTTP/on-demand thumbnails) Mute error output when task is set to mute --- tasks/task_http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/task_http.c b/tasks/task_http.c index 1ca8dbf659..7339e5c901 100644 --- a/tasks/task_http.c +++ b/tasks/task_http.c @@ -185,7 +185,7 @@ task_finished: if (task_get_cancelled(task)) task_set_error(task, strdup("Task cancelled.")); - else + else if (!task->mute) task_set_error(task, strdup("Download failed.")); } else