lrf 3 mēneši atpakaļ
vecāks
revīzija
3962a2af29
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      src/controller/match/matchExt.controller.ts

+ 1 - 1
src/controller/match/matchExt.controller.ts

@@ -485,7 +485,7 @@ export class MatchExtController implements BaseController {
      */
     await this.service.checkMatchExtStatus(match_id, '5');
     // 决赛名单,根据顺序升序
-    const { data: list } = await this.matchRegService.query({ match_id, ext_status: '5', final_confirm: '0' }, { order: { final_order_no: 'ASC' } });
+    const { data: list } = await this.matchRegService.query({ match_id, ext_status: '5' }, { order: { final_order_no: 'ASC' } });
     return list;
   }