forked from gitea/gitea
		
	Fix bug of DisableGravatar default value (#22296)
#18058 made a mistake. The disableGravatar's default value depends on `OfflineMode`. If it's `true`, then `disableGravatar` is true, otherwise it's `false`. But not opposite. Co-authored-by: KN4CK3R <admin@oldschoolhack.me>
This commit is contained in:
		
							parent
							
								
									2bbf9e7302
								
							
						
					
					
						commit
						9c8fc7f677
					
				| @ -266,7 +266,7 @@ func Init() error { | ||||
| 		enableFederatedAvatar = false | ||||
| 	} | ||||
| 
 | ||||
| 	if disableGravatar || !enableFederatedAvatar { | ||||
| 	if enableFederatedAvatar || !disableGravatar { | ||||
| 		var err error | ||||
| 		GravatarSourceURL, err = url.Parse(setting.GravatarSource) | ||||
| 		if err != nil { | ||||
|  | ||||
| @ -68,7 +68,7 @@ func newPictureService() { | ||||
| } | ||||
| 
 | ||||
| func GetDefaultDisableGravatar() bool { | ||||
| 	return !OfflineMode | ||||
| 	return OfflineMode | ||||
| } | ||||
| 
 | ||||
| func GetDefaultEnableFederatedAvatar(disableGravatar bool) bool { | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 GitHub
							GitHub