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); }); }