From d21506e1a4648c5e55eeebb559a1353a74501832 Mon Sep 17 00:00:00 2001 From: savalet Date: Mon, 20 May 2024 22:24:25 +0200 Subject: [PATCH] router(download): display the backup uuid on the error --- router/router_download.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/router/router_download.go b/router/router_download.go index 8ebcaa5..13f1e59 100644 --- a/router/router_download.go +++ b/router/router_download.go @@ -47,7 +47,7 @@ func getDownloadBackup(c *gin.Context) { if err != nil { if errors.Is(err, os.ErrNotExist) { c.AbortWithStatusJSON(http.StatusNotFound, gin.H{ - "error": "The requested backup was not found on this server.", + "error": "The requested backup with uuid: " + token.BackupUuid + " was not found on this server.", }) return }