From c613c1993a39fa62ca2b299005af7198e94dd4d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 28 Jun 2022 12:46:51 +0200 Subject: [PATCH] Manager: serve favicons at root web URL --- cmd/flamenco-manager/main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/flamenco-manager/main.go b/cmd/flamenco-manager/main.go index 7e063747..491313c0 100644 --- a/cmd/flamenco-manager/main.go +++ b/cmd/flamenco-manager/main.go @@ -306,6 +306,9 @@ func buildWebService( // Serve the Blender add-on. It's contained in the static files of the webapp. e.GET("/flamenco3-addon.zip", echo.WrapHandler(webAppHandler)) + // The favicons are also in the static files of the webapp. + e.GET("/favicon.png", echo.WrapHandler(webAppHandler)) + e.GET("/favicon.ico", echo.WrapHandler(webAppHandler)) // Redirect / to the webapp. e.GET("/", func(c echo.Context) error {