diff --git a/services/horizon/internal/web.go b/services/horizon/internal/web.go index 3bfa91ed7b..7d23ee5696 100644 --- a/services/horizon/internal/web.go +++ b/services/horizon/internal/web.go @@ -118,6 +118,7 @@ func (w *web) mustInstallMiddlewares(app *App, connTimeout time.Duration) { c := cors.New(cors.Options{ AllowedOrigins: []string{"*"}, AllowedHeaders: []string{"*"}, + ExposedHeaders: []string{"Date"}, }) r.Use(c.Handler)