mirror of
https://github.com/gogs/gogs.git
synced 2025-12-20 23:30:00 +01:00
user/auth: fix page not redirect after login
This commit is contained in:
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
|
||||||
Reference in New Issue
Block a user