Fixed redirect status code.

This commit is contained in:
mikestefanello 2022-04-12 21:08:00 -04:00
parent b4b8153d06
commit 31a3503021

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)
}
}