mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	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:
		@@ -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 {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user