From 4834b203a0087635cb16696d0a6c0dcae07a2d97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=89=8B=E7=93=9C=E4=B8=80=E5=8D=81=E9=9B=AA?= Date: Mon, 20 May 2024 17:56:36 +0800 Subject: [PATCH] fix: stop express --- src/common/server/http.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/server/http.ts b/src/common/server/http.ts index 6cf39730..72dea6ae 100644 --- a/src/common/server/http.ts +++ b/src/common/server/http.ts @@ -69,7 +69,7 @@ export abstract class HttpServerBase { // httpServerError = "" if (this.server) { this.server.close(); - // this.server = null; + this.server = null; } }