Fixed redirect status code.

This commit is contained in:
mikestefanello 2022-04-12 21:08:00 -04:00
parent 0ca3c2b701
commit cd1887124e

View File

@ -163,7 +163,7 @@ func (c *Controller) Redirect(ctx echo.Context, route string, routeParams ...int
return nil
} else {
return ctx.Redirect(303, url)
return ctx.Redirect(http.StatusFound, url)
}
}