This commit is contained in:
aozhiwei 2024-01-02 15:19:02 +08:00
parent 91b913fadd
commit f11e84c45e

View File

@ -144,6 +144,10 @@ class MatchController extends BaseAuthedController {
} else {
foreach ($currMatchDb as $key => $val) {
$tmpTeamDb = $this->readTeamDb($r, $key);
if ($tmpTeamDb['zid'] != $teamDb['zid'] ||
$tmpTeamDb['node_id'] != $teamDb['node_id']) {
continue;
}
if (!empty($tmpTeamDb) && $this->_getNowTime() - $val['match_time'] > 120) {
array_push($delTeams, $key);
} else {