From 7e16276c04e8e26e41c3d43c741cb006c79212c9 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Wed, 17 Apr 2024 14:41:29 -0700 Subject: [PATCH] embedr: return null width (#3598) --- bskyweb/cmd/embedr/handlers.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bskyweb/cmd/embedr/handlers.go b/bskyweb/cmd/embedr/handlers.go index 2ab72be4..5fee7f3a 100644 --- a/bskyweb/cmd/embedr/handlers.go +++ b/bskyweb/cmd/embedr/handlers.go @@ -55,8 +55,8 @@ type OEmbedResponse struct { AuthorURL string `json:"author_url,omitempty"` ProviderName string `json:"provider_url,omitempty"` CacheAge int `json:"cache_age,omitempty"` - Width int `json:"width,omitempty"` - Height *int `json:"height,omitempty"` + Width *int `json:"width"` + Height *int `json:"height"` HTML string `json:"html,omitempty"` } @@ -165,7 +165,7 @@ func (srv *Server) WebOEmbed(c echo.Context) error { AuthorURL: fmt.Sprintf("https://bsky.app/profile/%s", post.Author.Handle), ProviderName: "Bluesky Social", CacheAge: 86400, - Width: width, + Width: &width, Height: nil, HTML: html, }