* fix: rdp, desktop app, and mobile app login issues and guacd issues

* fix: general fixes

* fix: mobile/desktop login isssues

* fix: mobile/desktop login isssues

* fix: mobile/desktop login isssues

* chore: format
This commit is contained in:
Luke Gustafson
2026-05-12 21:55:14 -05:00
committed by GitHub
parent ada8a268bb
commit 10794f1e8d
19 changed files with 530 additions and 135 deletions
+2 -2
View File
@@ -596,7 +596,7 @@ function startBackendServer() {
logToFile("Starting embedded backend server...");
logToFile("Backend entry:", entryPath);
logToFile("Data directory:", dataDir);
logToFile("Backend cwd:", appRoot);
logToFile("Backend cwd:", path.dirname(entryPath));
logToFile("Checking paths...");
logToFile(" entryPath exists:", fs.existsSync(entryPath));
@@ -613,7 +613,7 @@ function startBackendServer() {
}
backendProcess = fork(entryPath, [], {
cwd: appRoot,
cwd: path.dirname(entryPath),
env: {
...process.env,
DATA_DIR: dataDir,