From 5810f49c97313afbdc1a710c36ff753b19d67b7c Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Tue, 22 Apr 2025 17:51:48 +0200 Subject: [PATCH] url save: fix location printed Print the final storage location when successfully decrypting a file with `aesgcm://` source. Signed-off-by: Steffen Jaeckel --- src/tools/aesgcm_download.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/tools/aesgcm_download.c b/src/tools/aesgcm_download.c index e12b6987..6daece5b 100644 --- a/src/tools/aesgcm_download.c +++ b/src/tools/aesgcm_download.c @@ -140,6 +140,9 @@ aesgcm_file_get(void* userdata) "Downloading '%s' failed: Failed to decrypt " "file (%s).", https_url, gcry_strerror(crypt_res)); + } else { + http_print_transfer_update(aesgcm_dl->window, aesgcm_dl->id, + "Decrypted file saved to '%s'", aesgcm_dl->filename); } if (aesgcm_dl->cmd_template != NULL) {