mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	fix: omit avatar_url in discord payload when empty (#22393)
Fixes #22391 This field is optional for Discord, however when it exists in the payload it is now validated. Omitting it entirely just makes Discord use the default for that webhook, which is set on the Discord side. Signed-off-by: jolheiser <john.olheiser@gmail.com>
This commit is contained in:
		@@ -55,7 +55,7 @@ type (
 | 
			
		||||
		Wait      bool           `json:"wait"`
 | 
			
		||||
		Content   string         `json:"content"`
 | 
			
		||||
		Username  string         `json:"username"`
 | 
			
		||||
		AvatarURL string         `json:"avatar_url"`
 | 
			
		||||
		AvatarURL string         `json:"avatar_url,omitempty"`
 | 
			
		||||
		TTS       bool           `json:"tts"`
 | 
			
		||||
		Embeds    []DiscordEmbed `json:"embeds"`
 | 
			
		||||
	}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user