diff options
Diffstat (limited to 'src/server/DashSession')
| -rw-r--r-- | src/server/DashSession/DashSessionAgent.ts | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/server/DashSession/DashSessionAgent.ts b/src/server/DashSession/DashSessionAgent.ts index 5cbba13de..ab3dfffcc 100644 --- a/src/server/DashSession/DashSessionAgent.ts +++ b/src/server/DashSession/DashSessionAgent.ts @@ -2,7 +2,7 @@ import { Email, pathFromRoot } from "../ActionUtilities";  import { red, yellow, green, cyan } from "colors";  import { get } from "request-promise";  import { Utils } from "../../Utils"; -import { WebSocket } from "../Websocket/Websocket"; +import { WebSocket } from "../websocket";  import { MessageStore } from "../Message";  import { launchServer, onWindows } from "..";  import { readdirSync, statSync, createWriteStream, readFileSync, unlinkSync } from "fs"; @@ -37,7 +37,7 @@ export class DashSessionAgent extends AppliedSessionAgent {          monitor.addReplCommand("debug", [/\S+\@\S+/], async ([to]) => this.dispatchZippedDebugBackup(to));          monitor.on("backup", this.backup);          monitor.on("debug", async ({ to }) => this.dispatchZippedDebugBackup(to)); -        monitor.on("delete", WebSocket.deleteFields); +        monitor.on("delete", WebSocket.doDelete);          monitor.coreHooks.onCrashDetected(this.dispatchCrashReport);          return sessionKey;      } | 
