mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 09:09:02 +00:00
modules/midlleware: little auth code fix, #777
This commit is contained in:
parent
d8394bb2e0
commit
fb9dcfa921
|
@ -54,7 +54,6 @@ func Toggle(options *ToggleOptions) macaron.Handler {
|
||||||
if strings.HasSuffix(ctx.Req.RequestURI, "watch") {
|
if strings.HasSuffix(ctx.Req.RequestURI, "watch") {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
println(url.QueryEscape(setting.AppSubUrl + ctx.Req.RequestURI))
|
|
||||||
ctx.SetCookie("redirect_to", url.QueryEscape(setting.AppSubUrl+ctx.Req.RequestURI), 0, setting.AppSubUrl)
|
ctx.SetCookie("redirect_to", url.QueryEscape(setting.AppSubUrl+ctx.Req.RequestURI), 0, setting.AppSubUrl)
|
||||||
ctx.Redirect(setting.AppSubUrl + "/user/login")
|
ctx.Redirect(setting.AppSubUrl + "/user/login")
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in a new issue