mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	Show the username as a fallback on feeds if full name is blank (#10438)
Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: Lauris BH <lauris@nix.lv>
This commit is contained in:
		@@ -120,10 +120,13 @@ func (a *Action) ShortActUserName() string {
 | 
			
		||||
	return base.EllipsisString(a.GetActUserName(), 20)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// GetDisplayName gets the action's display name based on DEFAULT_SHOW_FULL_NAME
 | 
			
		||||
// GetDisplayName gets the action's display name based on DEFAULT_SHOW_FULL_NAME, or falls back to the username if it is blank.
 | 
			
		||||
func (a *Action) GetDisplayName() string {
 | 
			
		||||
	if setting.UI.DefaultShowFullName {
 | 
			
		||||
		return a.GetActFullName()
 | 
			
		||||
		trimmedFullName := strings.TrimSpace(a.GetActFullName())
 | 
			
		||||
		if len(trimmedFullName) > 0 {
 | 
			
		||||
			return trimmedFullName
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	return a.ShortActUserName()
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user