Fixing badge

main
Uriel Fanelli 2025-05-06 20:53:06 +02:00
parent 1271ba3444
commit 47809f991c
1 changed files with 1 additions and 1 deletions

View File

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