From ea72ed50b9ad7b6fcb4e4e36d4a2ef03428c48fb Mon Sep 17 00:00:00 2001 From: Akash Kava <39438041+ackava@users.noreply.github.com> Date: Fri, 9 Feb 2024 17:56:41 +0530 Subject: [PATCH] client store removed --- src/server/StaticFileServer.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/server/StaticFileServer.ts b/src/server/StaticFileServer.ts index 2567718..c1afdc6 100644 --- a/src/server/StaticFileServer.ts +++ b/src/server/StaticFileServer.ts @@ -3,7 +3,7 @@ import { Router } from "express"; import { existsSync, readFileSync } from "fs"; import { isAbsolute, join, resolve } from "path"; import Packed from "./Packed"; -import WAClientStore from "./WAClientStore"; +// import WAClientStore from "./WAClientStore"; export default class StaticFileServer { @@ -42,10 +42,10 @@ export default class StaticFileServer { if (checkPacked) { - const id = req.headers["x-debug-id"] as string; - if (id) { - WAClientStore.instance.watch(id, path); - } + // const id = req.headers["x-debug-id"] as string; + // if (id) { + // WAClientStore.instance.watch(id, path); + // } if (Packed.checkPacked(path)) { // check...