From 28e1c183f4652288b2a7b35fcd03d05e502db410 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Tue, 26 Dec 2023 14:26:45 +0800 Subject: [PATCH] 1 --- webapp/controller/MatchController.class.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/webapp/controller/MatchController.class.php b/webapp/controller/MatchController.class.php index 803cee4f..6d5d4bf1 100644 --- a/webapp/controller/MatchController.class.php +++ b/webapp/controller/MatchController.class.php @@ -32,7 +32,11 @@ class MatchController extends BaseAuthedController { $this->_rspErr(1, 'The team has been disbanded'); return; } - $matchDb = $this->readCurrMatchTeam($r); + $matchOkDb = $this->readMatchOk($r, $teamUuid); + if ($matchOkDb) { + + } + $currMatchDb = $this->readCurrMatchTeam($r); $this->_rspData(array( 'team_info' => $teamDb ));