fix status code on success

This commit is contained in:
Philipp Seitz 2020-06-04 17:42:37 +02:00
parent 7a467a5a3b
commit f789f06cc0
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ func handleSubscriptionForm(c echo.Context) error {
makeMsgTpl("Error", "", fmt.Sprintf("%s", err.(*echo.HTTPError).Message)))
}
return c.Render(http.StatusInternalServerError, tplMessage,
return c.Render(http.StatusOK, tplMessage,
makeMsgTpl("Done", "", `Subscribed successfully.`))
}