fix: Fix resources

This commit is contained in:
2026-05-31 21:18:08 -05:00
parent 30bedb9b25
commit 2fb6e5be1f
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ let cachedStatus = { ...DEFAULT_STATUS };
function resourcePath(name: string) {
if (app.isPackaged) {
return path.join(process.resourcesPath, 'app', 'resources', name);
return path.join(process.resourcesPath, 'resources', name);
}
return path.join(app.getAppPath(), 'resources', name);
}