mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Minor readability patch. (#17627)
This commit is contained in:
		
				
					committed by
					
						
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							df64fa4865
						
					
				
				
					commit
					47448083a1
				
			@@ -50,7 +50,7 @@ func (b *Basic) Verify(req *http.Request, w http.ResponseWriter, store DataStore
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	auths := strings.SplitN(baHead, " ", 2)
 | 
			
		||||
	if len(auths) != 2 || (auths[0] != "Basic" && auths[0] != "basic") {
 | 
			
		||||
	if len(auths) != 2 || (strings.ToLower(auths[0]) != "basic") {
 | 
			
		||||
		return nil
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user