develop #31

Merged
zeni merged 9 commits from develop into main 2026-05-19 00:42:37 -04:00
Showing only changes of commit 7c164ef58f - Show all commits

View file

@ -149,7 +149,7 @@ func (rs *Response) Redirect(url string, use303 ...bool) *Response {
})
if len(use303) > 0 && use303[0] {
rs= http.StatusSeeOther // 303
rs.redirectStatusCode = http.StatusSeeOther // 303
} else {
rs.redirectStatusCode = http.StatusTemporaryRedirect // 307 (default)
}