diff --git a/src/api/controllers/puzzle.controller.ts b/src/api/controllers/puzzle.controller.ts index d424e2d..a8f8e1a 100644 --- a/src/api/controllers/puzzle.controller.ts +++ b/src/api/controllers/puzzle.controller.ts @@ -155,7 +155,8 @@ class PuzzleController extends BaseController { } new RoomState().lock(shop) let history = await PuzzleSession.findOne({ shop, status: {$in: [0, 1]}, type: 1 }) - if (history && !history.hasExpired()) { + if (history) { + // if (history && !history.hasExpired()) { beginTime = history.begin sessionMatch = history.id if (!history.members.has(accountid)) {