diff --git a/webapp/controller/MatchController.class.php b/webapp/controller/MatchController.class.php index da6191da..791e7786 100644 --- a/webapp/controller/MatchController.class.php +++ b/webapp/controller/MatchController.class.php @@ -150,6 +150,12 @@ class MatchController extends BaseAuthedController { } $matchInfo['state'] = 1; { + $teamDb = $this->readTeamDb($r, $teamUuid); + array_push($matchInfo['team_list'], $teamDb); + } + { + $teamDb = $this->readTeamDb($r, $matchOkDb['target_team']); + array_push($matchInfo['team_list'], $teamDb); } }