Procházet zdrojové kódy

Return 404 for stats on nonexistent houses

master
Matt Baer před 6 roky
rodič
revize
fd45b2c572
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. +2
    -1
      construction.go

+ 2
- 1
construction.go Zobrazit soubor

@@ -284,8 +284,9 @@ func viewHouseStats(app *app, w http.ResponseWriter, r *http.Request) error {
if err != nil {
page = []byte("<!DOCTYPE html><html><body>HTMLlot.</body></html>")
}
w.WriteHeader(http.StatusNotFound)
fmt.Fprintf(w, "%s", page)
return nil
return err
}
}
return err


Načítá se…
Zrušit
Uložit