mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2025-02-17 15:16:42 +00:00
fix: 5a2935b45b70121b7c0e009c51e20197aab8ff1c
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
5a2935b45b
commit
f1db47df38
@ -269,11 +269,9 @@ export default class QOJProvider extends UOJProvider implements IBasicProvider {
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
const statusText = summary.children[3]?.children[0]?.innerHTML;
|
const statusText = summary.children[3]?.children[0]?.innerHTML;
|
||||||
const statusMatch = /[A-Z]+/.exec(statusText);
|
const score = statusText.includes('✓')
|
||||||
const score =
|
? 100
|
||||||
statusMatch && statusMatch[0] === 'AC'
|
: parseInt(statusText || '') || 0;
|
||||||
? 100
|
|
||||||
: parseInt(statusText || '') || 0;
|
|
||||||
const status = score === 100 ? 'Accepted' : 'Unaccepted';
|
const status = score === 100 ? 'Accepted' : 'Unaccepted';
|
||||||
|
|
||||||
return await end({
|
return await end({
|
||||||
|
Loading…
x
Reference in New Issue
Block a user