From 398de8113d695b1608e2fcebd342d531032465dd Mon Sep 17 00:00:00 2001 From: MasterAcnolo <68693319+MasterAcnolo@users.noreply.github.com> Date: Sat, 15 Aug 2026 17:27:08 +0200 Subject: [PATCH] fix: the defaultThemesRessourcesPath variable was aiming to and old path, causing warn at every launch --- server/helpers/path.helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/helpers/path.helpers.js b/server/helpers/path.helpers.js index 9657baa..5e77204 100644 --- a/server/helpers/path.helpers.js +++ b/server/helpers/path.helpers.js @@ -150,7 +150,7 @@ const binaryPaths = { * - user themes are persisted in userData to survive updates */ const userThemesPath = path.join(app.getPath("userData"), "themes"); -const defaultThemesSourcePath = path.join(resourcesPath, "theme"); +const defaultThemesSourcePath = path.join("theme"); /** * Initializes user theme directory and ensures default themes exist.