Debuggen eines fehlers

This commit is contained in:
Domenik Rath 2025-01-12 12:39:09 +01:00
parent 85822fefa2
commit 6a468cd718

10
main.go
View File

@ -76,9 +76,15 @@ func handleFavicon(w http.ResponseWriter, r *http.Request) {
}
func handlePopupInstructions(w http.ResponseWriter, r *http.Request) {
tmpl := template.Must(template.ParseFiles("popup.html"))
tmpl, err := template.ParseFiles("popup.html")
if err != nil {
log.Printf("Fehler beim Parsen des Templates: %v", err)
http.Error(w, "Interner Serverfehler", http.StatusInternalServerError)
return
}
if err := tmpl.Execute(w, nil); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
log.Printf("Fehler beim Ausführen des Templates: %v", err)
http.Error(w, "Interner Serverfehler", http.StatusInternalServerError)
}
}