diff --git a/packages/server/src/api/controllers/static/index.ts b/packages/server/src/api/controllers/static/index.ts index b90d24c9b1..daf7b9b25c 100644 --- a/packages/server/src/api/controllers/static/index.ts +++ b/packages/server/src/api/controllers/static/index.ts @@ -6,7 +6,6 @@ import { ObjectStoreBuckets } from "../../../constants" import { processString } from "@budibase/string-templates" import { loadHandlebarsFile, - streamFile, NODE_MODULES_PATH, shouldServeLocally, TOP_LEVEL_PATH, @@ -146,7 +145,7 @@ const requiresMigration = async (ctx: Ctx) => { } export const serveApp = async function (ctx: UserCtx) { - if (ctx.url.includes("apple-touch-icon")) { + if (ctx.url.includes("apple-touch-icon.png")) { ctx.redirect("/builder/bblogo.png") return }