This commit is contained in:
aozhiwei 2023-12-26 14:26:45 +08:00
parent 69fd8c5bd0
commit 28e1c183f4

View File

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