Fix #165
This commit is contained in:
		
					parent
					
						
							
								ad5ec45dd6
							
						
					
				
			
			
				commit
				
					
						9d2cef23f2
					
				
			
		
					 1 changed files with 5 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -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 {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue