Unknown преди 10 години
родител
ревизия
9d2cef23f2
променени са 1 файла, в които са добавени 5 реда и са изтрити 1 реда
  1. 5 1
      modules/auth/user.go

+ 5 - 1
modules/auth/user.go

@@ -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 {