1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-10-11 05:30:03 -04:00
This commit is contained in:
Unknown 2014-06-21 00:53:46 -04:00
parent ad5ec45dd6
commit 9d2cef23f2

View File

@ -25,7 +25,11 @@ func SignedInId(header http.Header, sess session.SessionStore) int64 {
return 0
}
id, _ := base.StrTo(header.Get(setting.ReverseProxyAuthUid)).Int64()
var id int64
if setting.Service.EnableReverseProxyAuth {
id, _ = base.StrTo(header.Get(setting.ReverseProxyAuthUid)).Int64()
}
if id <= 0 {
uid := sess.Get("userId")
if uid == nil {