Work on client modes

This commit is contained in:
Zef Hemel
2023-08-29 21:17:29 +02:00
parent 5ff1a8bae3
commit 9a005f26b5
54 changed files with 594 additions and 302 deletions
+5 -1
View File
@@ -68,7 +68,11 @@ export class HttpServer {
.replaceAll(
"{{SPACE_PATH}}",
this.options.pagesPath.replaceAll("\\", "\\\\"),
).replaceAll("{{THIN_CLIENT_MODE}}", this.system ? "on" : "off");
// );
).replaceAll(
"{{SUPPORT_ONLINE_MODE}}",
this.system ? "true" : "false",
);
}
async start() {