From bc38acded3185b62fb234192667ce72f926a8636 Mon Sep 17 00:00:00 2001 From: jiangrui Date: Wed, 12 Mar 2025 15:22:30 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E5=8E=BB=E9=99=A4=E8=8E=B7=E5=8F=96?= =?UTF-8?q?=E8=B5=84=E6=BA=90=E4=BF=A1=E6=81=AF=E9=9C=80=E8=A6=81cookie?= =?UTF-8?q?=E7=9A=84=E9=99=90=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/src/controllers/BaseCloudController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/controllers/BaseCloudController.ts b/backend/src/controllers/BaseCloudController.ts index 21d7ad6..cf8cff8 100644 --- a/backend/src/controllers/BaseCloudController.ts +++ b/backend/src/controllers/BaseCloudController.ts @@ -10,7 +10,7 @@ export abstract class BaseCloudController extends BaseController { async getShareInfo(req: Request, res: Response): Promise { await this.handleRequest(req, res, async () => { const { shareCode, receiveCode } = req.query; - await this.cloudService.setCookie(req); + // await this.cloudService.setCookie(req); return await this.cloudService.getShareInfo(shareCode as string, receiveCode as string); }); }