From 1d891b05f7f53e0f1ebdaaaddf15258f5018602f Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Tue, 26 Dec 2023 15:49:01 +0800 Subject: [PATCH] 1 --- webapp/controller/MatchController.class.php | 6 ++++++ 1 file changed, 6 insertions(+) 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); } }