about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--bskyweb/cmd/embedr/handlers.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/bskyweb/cmd/embedr/handlers.go b/bskyweb/cmd/embedr/handlers.go
index 2ab72be44..5fee7f3a0 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,
 	}