router(download): display the backup uuid on the error

This commit is contained in:
savalet 2024-05-20 22:24:25 +02:00
parent 9ffbcdcdb1
commit d21506e1a4

View File

@ -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
}