From c0b746e03faa08e9e04616af3d3270da98e4a80d Mon Sep 17 00:00:00 2001 From: FliegendeWurst Date: Mon, 16 Jun 2025 08:29:21 +0200 Subject: [PATCH] fix(desktop): proper icon path The previous value points to a file that no longer exists in the release builds. This file also only exists in the flake build. --- apps/server/src/services/window.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/server/src/services/window.ts b/apps/server/src/services/window.ts index a803e150d..42969cf39 100644 --- a/apps/server/src/services/window.ts +++ b/apps/server/src/services/window.ts @@ -257,7 +257,7 @@ async function configureWebContents(webContents: WebContents, spellcheckEnabled: } function getIcon() { - return path.join(RESOURCE_DIR, "images/app-icons/png/256x256" + (isDev ? "-dev" : "") + ".png"); + return path.join(RESOURCE_DIR, "../public/assets/icon.png"); } async function createSetupWindow() {