From dfa798a35dfbae6010a81bc19f2d1e39209002dd 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: Thu, 2 May 2024 18:15:26 +0800 Subject: [PATCH] fix --- 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 5f2371f5..83a4ea6f 100644 --- a/src/common/server/http.ts +++ b/src/common/server/http.ts @@ -7,7 +7,7 @@ import { ob11Config } from '@/onebot11/config'; type RegisterHandler = (res: Response, payload: any) => Promise export abstract class HttpServerBase { - name: string = 'LLOneBot'; + name: string = 'NapCatQQ'; private readonly expressAPP: Express; private server: http.Server | null = null;