diff --git a/badge.go b/badge.go index 5ba36d7..5bb4d9c 100644 --- a/badge.go +++ b/badge.go @@ -30,7 +30,7 @@ func badgeHandler(w http.ResponseWriter, r *http.Request) { // Verifica se il file MP3 esiste if _, err := os.Stat("." + mp3Path); os.IsNotExist(err) { - http.Error(w, "Episode not found", http.StatusNotFound) + http.Error(w, "Episode not found: "+mp3Path, http.StatusNotFound) return }