Selaa lähdekoodia

Fix incorrect passing of error in HTTP response

Kailash Nadh 6 vuotta sitten
vanhempi
commit
5b42e8659f
1 muutettua tiedostoa jossa 1 lisäystä ja 2 poistoa
  1. 1 2
      handlers.go

+ 1 - 2
handlers.go

@@ -125,8 +125,7 @@ func handleIndexPage(c echo.Context) error {
 
 	b, err := app.FS.Read("/frontend/index.html")
 	if err != nil {
-		return echo.NewHTTPError(http.StatusInternalServerError,
-			err)
+		return echo.NewHTTPError(http.StatusInternalServerError, err.Error())
 	}
 
 	c.Response().Header().Set("Content-Type", "text/html")