From a83f8302dcd50d469ec2245547dfb14e8e2443cf Mon Sep 17 00:00:00 2001 From: Baoshuo Date: Sun, 6 Nov 2022 16:02:39 +0800 Subject: [PATCH] fix: 75cb0f3749543c27a01eac3e71a6d6552cbc029a --- web/app/views/contest-standings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/views/contest-standings.php b/web/app/views/contest-standings.php index b780867..79edef6 100644 --- a/web/app/views/contest-standings.php +++ b/web/app/views/contest-standings.php @@ -15,7 +15,7 @@ var person = score[key]; if (person[i] === undefined) return; - if (person[i][0] === 100 && (first_accepted[i] === undefined || first_accepted[i][0] === person[i][1] && first_accepted[i][1] > person[i][2])) { + if (person[i][0] === 100 && (first_accepted[i] === undefined || first_accepted[i][1] > person[i][2])) { first_accepted[i] = [person[i][1], person[i][2]]; } });