core: add null check

pull/150/head
undefined 3 years ago
parent 105608558f
commit d5e67de7ad

@ -2,4 +2,3 @@ dist
*.d.ts
node_modules
public
packages/ui-default/

@ -1,6 +1,6 @@
{
"name": "hydrooj",
"version": "2.28.8",
"version": "2.28.9",
"bin": "bin/hydrooj.js",
"main": "dist/loader.js",
"typings": "dist/loader.d.ts",

@ -247,7 +247,7 @@ export class ProblemModel {
const l = {};
const ddocs = await Promise.all(Object.keys(parsed).map((i) => domain.get(i)));
const f = ddocs.filter((i) => !(
i._id === domainId
i?._id === domainId
|| i?.share === '*'
|| (`,${(i?.share || '').replace(//g, ',').split(',').map((q) => q.trim()).join(',')},`).includes(`,${domainId},`)
));

@ -111,15 +111,11 @@ export default class DOMAttachedObject {
}
constructor($dom, monitorDetach = false) {
if ($dom == null) {
return null;
}
if ($dom == null) return null;
this.$dom = $dom;
this.id = ++DOMAttachedObject.uniqueIdCounter;
this.eventNS = `vj4obj_${this.id}`;
this.detached = false;
if (monitorDetach) {
monitorResource(this);
}
if (monitorDetach) monitorResource(this);
}
}

Loading…
Cancel
Save