Browse Source

Fix output only code length miscalculated

pull/6/head
Pisces000221 7 years ago
parent
commit
bfad5f5fc0
  1. 6
      modules/admin.js

6
modules/admin.js

@ -328,8 +328,10 @@ app.post('/admin/other', async (req, res) => {
} else if (req.body.type === 'reset_codelen') {
const submissions = await JudgeState.query();
for (const s of submissions) {
s.code_length = s.code.length;
await s.save();
if (s.type !== 'submit-answer') {
s.code_length = s.code.length;
await s.save();
}
}
} else {
throw new ErrorMessage("操作类型不正确");

Loading…
Cancel
Save