core: fix record display

pull/222/head
undefined 3 years ago
parent 71bb2f0b51
commit 42f41c4f61

@ -1,6 +1,6 @@
{
"name": "hydrooj",
"version": "2.39.3",
"version": "2.39.4",
"bin": "bin/hydrooj.js",
"main": "src/loader",
"module": "src/loader",

@ -107,7 +107,7 @@ class RecordDetailHandler extends Handler {
this.response.template = 'record_detail.html';
const rdoc = await record.get(domainId, rid);
if (!rdoc) throw new RecordNotFoundError(rid);
if (rdoc.contest.toHexString() === '000000000000000000000000') {
if (rdoc.contest?.toHexString() === '000000000000000000000000') {
if (rdoc.uid !== this.user._id) throw new PermissionError(PERM.PERM_READ_RECORD_CODE);
} else if (rdoc.contest) {
const tdoc = await contest.get(domainId, rdoc.contest);

Loading…
Cancel
Save