aboutsummaryrefslogtreecommitdiff
path: root/src/server/index.ts
diff options
context:
space:
mode:
authorSam Wilkins <samwilkins333@gmail.com>2020-04-03 17:37:36 -0700
committerSam Wilkins <samwilkins333@gmail.com>2020-04-03 17:37:36 -0700
commit3949f6a094f835e495562ab5484b23ade3d1003f (patch)
tree046fc263c6ffad43c90d5236e3fa343870e5b1b6 /src/server/index.ts
parent5414cc78dfb650954c9b6fef8115a5945ea8d6a6 (diff)
restored session manager content, things compile and seem to run fine
Diffstat (limited to 'src/server/index.ts')
-rw-r--r--src/server/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/index.ts b/src/server/index.ts
index 8325f5d44..97f70630b 100644
--- a/src/server/index.ts
+++ b/src/server/index.ts
@@ -22,7 +22,7 @@ import GeneralGoogleManager from "./ApiManagers/GeneralGoogleManager";
import GooglePhotosManager from "./ApiManagers/GooglePhotosManager";
import { Logger } from "./ProcessFactory";
import { yellow } from "colors";
-// import { DashSessionAgent } from "./DashSession/DashSessionAgent";
+import { DashSessionAgent } from "./DashSession/DashSessionAgent";
import SessionManager from "./ApiManagers/SessionManager";
import { AppliedSessionAgent } from "./DashSession/Session/agents/applied_session_agent";
import { Utils } from "../Utils";
@@ -146,7 +146,7 @@ export async function launchServer() {
* So, the 'else' clause is exactly what we've always run when executing npm start.
*/
if (process.env.RELEASE) {
- // (sessionAgent = new DashSessionAgent()).launch();
+ (sessionAgent = new DashSessionAgent()).launch();
} else {
launchServer();
}