1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2024-12-03 12:23:02 +00:00

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

View file

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