mirror of https://github.com/gogs/gogs.git
user/auth: fix page not redirect after login
parent
4d1d66d906
commit
4258bf3d54
2
gogs.go
2
gogs.go
|
@ -16,7 +16,7 @@ import (
|
||||||
"github.com/gogits/gogs/pkg/setting"
|
"github.com/gogits/gogs/pkg/setting"
|
||||||
)
|
)
|
||||||
|
|
||||||
const APP_VER = "0.11.30.1014"
|
const APP_VER = "0.11.31.1022"
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
setting.AppVer = APP_VER
|
setting.AppVer = APP_VER
|
||||||
|
|
|
@ -95,7 +95,6 @@ func Login(c *context.Context) {
|
||||||
} else {
|
} else {
|
||||||
redirectTo, _ = url.QueryUnescape(c.GetCookie("redirect_to"))
|
redirectTo, _ = url.QueryUnescape(c.GetCookie("redirect_to"))
|
||||||
}
|
}
|
||||||
c.SetCookie("redirect_to", "", -1, setting.AppSubURL)
|
|
||||||
|
|
||||||
if isSucceed {
|
if isSucceed {
|
||||||
if isValidRedirect(redirectTo) {
|
if isValidRedirect(redirectTo) {
|
||||||
|
@ -103,6 +102,7 @@ func Login(c *context.Context) {
|
||||||
} else {
|
} else {
|
||||||
c.Redirect(setting.AppSubURL + "/")
|
c.Redirect(setting.AppSubURL + "/")
|
||||||
}
|
}
|
||||||
|
c.SetCookie("redirect_to", "", -1, setting.AppSubURL)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
0.11.30.1014
|
0.11.31.1022
|
Loading…
Reference in New Issue