This commit is contained in:
Unknwon 2015-11-18 23:52:09 -05:00
parent 915bf1d2e3
commit 9330c943cd
4 changed files with 16 additions and 11 deletions

View file

@ -40,8 +40,9 @@ func SignIn(ctx *middleware.Context) {
if redirectTo, _ := url.QueryUnescape(ctx.GetCookie("redirect_to")); len(redirectTo) > 0 {
ctx.SetCookie("redirect_to", "", -1, setting.AppSubUrl)
ctx.Redirect(redirectTo)
} else {
ctx.Redirect(setting.AppSubUrl + "/")
}
ctx.Redirect(setting.AppSubUrl + "/")
return
}