judge: 优化无测试数据时的提示

pull/61/head
undefined 4 years ago
parent a6297bfe9b
commit b15cadf5fb

@ -1,7 +1,7 @@
{
"name": "@hydrooj/hydrojudge",
"bin": "bin/hydrojudge.js",
"version": "2.4.13",
"version": "2.4.14",
"os": [
"linux"
],

@ -75,7 +75,7 @@ async function postInit() {
async function cacheOpen(domainId: string, pid: string, files: any[]) {
const filePath = path.join(getConfig('cache_dir'), domainId, pid);
await fs.ensureDir(filePath);
if (!files.length) throw new SystemError('Problem data not found.');
if (!files?.length) throw new SystemError('Problem data not found.');
let etags: Record<string, string> = {};
try {
etags = JSON.parse(fs.readFileSync(path.join(filePath, 'etags')).toString());

Loading…
Cancel
Save