about summary refs log tree commit diff stats
path: root/src/command/cmd_funcs.c
diff options
context:
space:
mode:
authorPierre Mazière <pierre.maziere@gmx.com>2020-06-15 11:31:44 +0200
committerMichael Vetter <jubalh@iodoru.org>2020-06-25 15:03:34 +0200
commit233494d01edb5aadbe6fdda24f353e807c6680b3 (patch)
treeecc314adc0f2c420d4fec77d9757e23b5e53525d /src/command/cmd_funcs.c
parentf9961677aaa8d2713a80127f95a3770b33af4cef (diff)
downloadprofani-tty-233494d01edb5aadbe6fdda24f353e807c6680b3.tar.gz
Display a message acknowledging file saving success
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
Diffstat (limited to 'src/command/cmd_funcs.c')
-rw-r--r--src/command/cmd_funcs.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/command/cmd_funcs.c b/src/command/cmd_funcs.c
index 4d084aac..b7a6dec3 100644
--- a/src/command/cmd_funcs.c
+++ b/src/command/cmd_funcs.c
@@ -9138,6 +9138,8 @@ cmd_url_save(ProfWin *window, const char *const command, gchar **args)
 
     if (!call_external(argv, NULL, NULL)) {
         cons_show_error("Unable to save url: check the logs for more information.");
+    } else {
+        cons_show("URL '%s' has been saved into '%s'.", uri, target_path);
     }
 
     g_free(target_dir);