From 801828a57d5e991b590d26e1093d31ea297274df Mon Sep 17 00:00:00 2001 From: Hailey Date: Thu, 18 Sep 2025 10:55:01 -0700 Subject: [PATCH] revert a couple things --- bskyweb/cmd/bskyweb/server.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bskyweb/cmd/bskyweb/server.go b/bskyweb/cmd/bskyweb/server.go index 79fb444867..f0cd72b153 100644 --- a/bskyweb/cmd/bskyweb/server.go +++ b/bskyweb/cmd/bskyweb/server.go @@ -394,9 +394,7 @@ func (srv *Server) Shutdown() error { func (srv *Server) NewTemplateContext() pongo2.Context { return pongo2.Context{ "staticCDNHost": srv.cfg.staticCDNHost, - "favicon": fmt.Sprintf("%s/static/favicon.png", "https://bsky.app"), - // specify the default image for social cards - "defaultBannerImage": fmt.Sprintf("%s/static/social-card-default.png", srv.cfg.staticCDNHost), + "favicon": fmt.Sprintf("%s/static/favicon.png", srv.cfg.staticCDNHost), } }