fix: 75cb0f3749
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Baoshuo Ren 2022-11-06 16:02:39 +08:00
parent 75cb0f3749
commit a83f8302dc
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A

View File

@ -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]];
}
});