about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorSteffen Jaeckel <jaeckel-floss@eyet-services.de>2022-07-05 00:58:15 +0200
committerSteffen Jaeckel <jaeckel-floss@eyet-services.de>2022-09-07 10:04:00 +0200
commit099b443dc88339a0c971d709235980f8bc4f7faf (patch)
treedb53fab1ee6270825135cbb221e97388eedfa01c
parent5d945a9629336e1ec27f8a9b9263c277f65fb290 (diff)
downloadprofani-tty-099b443dc88339a0c971d709235980f8bc4f7faf.tar.gz
Tell user where the downloaded file is stored
Signed-off-by: Steffen Jaeckel <jaeckel-floss@eyet-services.de>
-rw-r--r--src/tools/http_download.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/http_download.c b/src/tools/http_download.c
index bbbccce1..9920caa1 100644
--- a/src/tools/http_download.c
+++ b/src/tools/http_download.c
@@ -190,8 +190,8 @@ http_file_get(void* userdata)
     } else {
         if (!download->cancel) {
             http_print_transfer_update(download->window, download->url,
-                                       "Downloading '%s': done",
-                                       download->url);
+                                       "Downloading '%s': done\nSaved to '%s'",
+                                       download->url, download->filename);
             win_mark_received(download->window, download->url);
         }
     }