This commit is contained in:
aozhiwei 2023-12-26 15:21:27 +08:00
parent 21587f7c37
commit 8bd3b443ec

View File

@ -32,6 +32,9 @@ class MatchController extends BaseAuthedController {
$this->_rspErr(1, 'The team has been disbanded');
return;
}
$matchInfo = array(
);
$matchOkDb = $this->readMatchOk($r, $teamUuid);
if ($matchOkDb) {
$this->refreshKeyExpire($r, MATCH_OK_KEY . $teamUuid, 1000*600);
@ -52,9 +55,7 @@ class MatchController extends BaseAuthedController {
}
}
}
$this->_rspData(array(
'team_info' => $teamDb
));
$this->_rspData($matchInfo);
}
public function cancel()