Discord: Added missing Height and Width into EmbedImage

This commit is contained in:
diamondburned (Forefront) 2020-02-22 16:38:19 -08:00
parent 02987206ab
commit e0589785c5
1 changed files with 4 additions and 2 deletions

View File

@ -138,8 +138,10 @@ type EmbedFooter struct {
}
type EmbedImage struct {
URL URL `json:"url"`
Proxy URL `json:"proxy_url"`
URL URL `json:"url"`
Proxy URL `json:"proxy_url"`
Height uint `json:"height,omitempty"`
Width uint `json:"width,omitempty"`
}
type EmbedThumbnail struct {